Skip to content

Commit 99c4d78

Browse files
committed
typo fix
1 parent 3b7d616 commit 99c4d78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

09_Day_Conditionals/09_conditionals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ if condition and condition:
169169
a = 0
170170
if a > 0 and a % 2 == 0:
171171
print('A is an even and positive integer')
172-
elif a > 0 and a % 2 != = 0:
172+
elif a > 0 and a % 2 != 0:
173173
print('A is a positive integer')
174174
elif a == 0:
175175
print('A is zero')

0 commit comments

Comments
 (0)