FontBot/helper.py

10 lines
162 B
Python
Raw Normal View History

2021-07-31 11:10:39 +02:00
#Little script to iterate over a new charset
2021-10-23 18:46:56 +02:00
base = ""
count = 26*1
2021-07-31 11:10:39 +02:00
for i in range(0, count):
print('"', chr(ord(base)+i), '", ', end="", sep="")
print()