FontBot/helper.py

10 lines
162 B
Python
Executable File

#Little script to iterate over a new charset
base = ""
count = 26*2
for i in range(0, count):
print('"', chr(ord(base)+i), '", ', end="", sep="")
print()