-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathg.py
48 lines (48 loc) · 1.2 KB
/
g.py
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
46
47
48
global_ = {}
builtin = {"print": print,
"max": max,
"sum": sum,
"len": len,
"range": range,
'hash': hash,
"__name__": "__main__",
"abs": abs,
"all": all,
"any": any,
"bin": bin,
"chr": chr,
"divmod": divmod,
"format": format,
"hex": hex,
"input": input,
"iter": iter,
"len": len,
"max": max,
"min": min,
"next": next,
"oct": oct,
"ord": ord,
"pow": pow,
"repr": repr,
"round": round,
"sorted": sorted,
"None": None,
"False": False,
"True": True,
"bool": bool,
"bytes": bytes,
"complex": complex,
"dict": dict,
"enumerate": enumerate,
"filter": filter,
"float": float,
"frozenset": frozenset,
"int": int,
"list": list,
"map": map,
"set": set,
"slice": slice,
"str": str,
"zip": zip,
"copyright": "来自于copie的沙盒"
}