-
Notifications
You must be signed in to change notification settings - Fork 19
/
test_for_1.py
executable file
·68 lines (55 loc) · 1001 Bytes
/
test_for_1.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
OntCversion = '2.0.0'
def Main():
for i in test():
if i == 4:
break
else:
assert(False)
x = 0
for i in test():
if i == 4:
pass
while i < 4:
if i == 3:
break
i += 1
else:
x = 8
if i < 4:
assert(x == 0)
else:
assert(x == 8)
else:
x = 9
assert(x == 9)
x = 0
for i in test():
if i == 4:
pass
while i < 4:
if i == 3:
pass
i += 1
else:
x = 8
assert(x == 8)
else:
x = 9
assert(x == 9)
x = 0
for i in test():
if i == 4:
pass
while i < 4:
if i == 3:
pass
i += 1
else:
x = 8
assert(x == 8)
break
else:
x = 9
assert(x == 8)
def test():
return [1, 2, 3, 4, 5]