GitHub Migration
This commit is contained in:
9
mkarray.py
Normal file
9
mkarray.py
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
file = open('prog.txt','r')
|
||||
|
||||
s = ""
|
||||
for b in file.read():
|
||||
s+="%d," % ord(b)
|
||||
|
||||
print(s[:-1])
|
||||
Reference in New Issue
Block a user