Create 6 - Character Map

This commit is contained in:
Lukas Baumann 2021-02-18 18:12:16 +01:00 committed by GitHub
parent 71697a11f3
commit 3e94144745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
08/6 - Character Map Normal file
View 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])