Skip to content

Commit 2cfb3e1

Browse files
committed
examples
0 parents  commit 2cfb3e1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

examples.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
x = 500
3+
4+
if x > 200 :
5+
print('x > 200')
6+
7+
if x > 100 :
8+
print('x > 100')
9+
10+
if x > 50 :
11+
print('x > 50')
12+
13+
14+
x = 5
15+
16+
if x > 200 :
17+
print('x > 200')
18+
19+
elif x > 100 :
20+
print('x > 100')
21+
22+
elif x > 50 :
23+
print('x > 50')
24+
25+
else:
26+
print(x)

0 commit comments

Comments
 (0)