First commit

Former-commit-id: 424079609133edcc501ae185509836ee1181a02c
This commit is contained in:
2022-06-12 19:47:20 +08:00
commit f6658f3d52
51 changed files with 82841 additions and 0 deletions

3
name_code/web/main.py Normal file
View File

@ -0,0 +1,3 @@
t=input("Name: ").encode("GB2312")
for i in range(0,len(t),2):
print("%02d%02d"%(t[i]-0xA0,t[i+1]-0xA0),end=" ")