-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.py
More file actions
78 lines (55 loc) · 970 Bytes
/
Copy pathexample.py
File metadata and controls
78 lines (55 loc) · 970 Bytes
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# ------- Test1 -------
#def f(x,y,z=1):
# return 2
#def f(x,y,z):
# return 3
# ------- Test2 -------
#def f(x,y,z):
# return 2
#def f(x,y=1,z=1, e):
# return 3
# ------- Test3 -------
#def f(x,y):
# return 2
#def f(x,y,z=1):
# return 3
# ------- Test4 -------
#def f(x,y,z):
# return 2
#def f(x,y,z=1):
# return 3
# ------- Test5 -------
#def f():
# return 1
#def f():
# return 2
# ------- Test6 -------
#y = 1
#x = y + 2
# ------- Test7 -------
#z-=1
# ------- Test8 -------
#z/=1
# ------- Test9 -------
#z[2] = 3
# ------- Test10 -------
#z=2
#z-=1
# ------- Test11 -------
#def add(x,y):
# return "hello world"
#print add(2,1)+2
# ------- Test11 -------
#p = max(1)
#q = min(2)
# ------- Test12 -------
#a = 1/0
# ------- Test13 -------
#c = len(2)
# ------- Test14 -------
#x = 1*2*3**10
# ------- Test15 -------
#x = ascii(x)
# ------- Test16 -------
#x = 2
#y = ascii(x)