Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jul 8, 2021
1 parent 3b7d616 commit 99c4d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 09_Day_Conditionals/09_conditionals.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ if condition and condition:
a = 0
if a > 0 and a % 2 == 0:
print('A is an even and positive integer')
elif a > 0 and a % 2 != = 0:
elif a > 0 and a % 2 != 0:
print('A is a positive integer')
elif a == 0:
print('A is zero')
Expand Down

0 comments on commit 99c4d78

Please sign in to comment.