Skip to content

Commit 8319e51

Browse files
authored
Update PythonIfElse.py
1 parent e769580 commit 8319e51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Introduction/PythonIfElse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
import sys
1212

1313
n = int(input())
14-
if(n%2==1) or n in range (5,21):
14+
if n%2==1 or n in range (5,21):
1515
print("Weird")
1616
else:
1717
print("Not Weird")
1818

19-
//I think this is simpler and easy from the previous.
19+

0 commit comments

Comments
 (0)