Skip to content

Commit f13d6c2

Browse files
committed
Update Test
1 parent 63725a1 commit f13d6c2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Python/Test/Test.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
test = True
3+
4+
print("Billy") if test else print("Python")
5+
6+
7+
value = 68
8+
9+
if value>=80:
10+
print("A")
11+
elif value>=60:
12+
print("B")
13+
else:
14+
print("C")

0 commit comments

Comments
 (0)