Files
SimpleQuine/mkarray.py
2025-12-19 18:00:07 -06:00

10 lines
111 B
Python

#!/usr/bin/python
file = open('prog.txt','r')
s = ""
for b in file.read():
s+="%d," % ord(b)
print(s[:-1])