mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-19 18:32:58 +00:00
14 lines
350 B
Python
Executable File
14 lines
350 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
alphabet = 'MNOPQRSTUVWXYZABCDEFGHIJKL'
|
|
with open(sys.argv[1]) as f:
|
|
lines = f.readlines()
|
|
for c in alphabet:
|
|
for line, row in zip(lines, range(len(lines))):
|
|
for l, col in zip(line, range(len(line))):
|
|
if l == c:
|
|
print("%s,%s," % (row,col), end=' ')
|
|
print("255,255")
|