Files
tools/name_code/web/gen.py
flt6 f6658f3d52 First commit
Former-commit-id: 424079609133edcc501ae185509836ee1181a02c
2022-06-12 19:47:20 +08:00

16 lines
354 B
Python

from pickle import dump
opt={}
base=0xa0a0
for i in range(1,87+1):
for j in range(1,94+1):
t=base+(i<<8)+j
t=t.to_bytes(2,'big')
# print(t)
try:
opt[t.decode("gb2312")]='%02d%02d'%(i,j)
except UnicodeDecodeError:
pass
print(opt[""])
with open("File.data","wb") as f:
dump(opt,f)