-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcypherMap.py
More file actions
45 lines (33 loc) · 1.1 KB
/
cypherMap.py
File metadata and controls
45 lines (33 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
bounds = ['"', "'", "~"]
zhEn = {
#################################################################### Extra Characters
"Characters": {
"(" : "(", ")" : ")",
"“" :'"', "”" : '"', "‘" : "'", "’" : "'",
"," : ",", "!" : "!",
"\n" : "\n",
" " : " ",
"~" : "",
":" : ":",
},
#################################################################### Keywords
"Keywords": {
"和": "and", "或": "or", "在": "is", "不": "not", "里": "in",
"如": "if", "除": "elif", "然": "else",
"找": "import", "当": "as", #"": "from",
"破": "break", "退": "return", "前": "continue", #"": "pass",
"试": "try", #"": "except", #"": "finally", #"": "assert", #"": "yield", #"": "raise",
"对": "True", "错": "False", "没": "None",
#"": "global", #"": "nonlocal",
"班": "class", "删": "del", #"": "def",
#"": "lambda",
#"": "while", #"": "for", "让": "with",
},
#################################################################### Functions
"Functions": {
"印" : "print",
},
}
enZh = {
"" : "",
}