Create 6 - Character Map
This commit is contained in:
parent
71697a11f3
commit
3e94144745
9
08/6 - Character Map
Normal file
9
08/6 - Character Map
Normal file
@ -0,0 +1,9 @@
|
||||
res = ""
|
||||
for i in range(2, 8):
|
||||
chars = "chr: "
|
||||
nums = "asc: "
|
||||
for j in range(16):
|
||||
chars += chr(16*i+j) + " "
|
||||
nums += str(16*i+j) + " " * (4-len(str(16*i+j)))
|
||||
res += chars + "\n" + nums + "\n"
|
||||
print(res[:-1])
|
Loading…
Reference in New Issue
Block a user