Skip to content

Commit c4aa863

Browse files
committed
Added comparison_operators.py to Python-Basic-to-Advance repo
1 parent 909203c commit c4aa863

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

comparison_operators.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
a=5
2+
b=2
3+
print(a==b)
4+
print(a>b)
5+
print(a<b)
6+
print(a!=b)
7+
print(a>=b)
8+
print(a<=b)

0 commit comments

Comments
 (0)