Skip to content

Commit 40e74e7

Browse files
last elif statement need changes
1 parent 9168aaa commit 40e74e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Basics/Hindi/6_if/Exercise/6_exercise1_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
print("Both cities are in india")
1919
elif city1 in pakistan and city2 in pakistan:
2020
print("Both cities are in pakistan")
21-
elif city1 in bangladesh and bangladesh in india:
21+
elif city1 in bangladesh and city2 in bangladesh:
2222
print("Both cities are in bangladesh")
2323
else:
24-
print("They don't belong to same country")
24+
print("They don't belong to same country")

0 commit comments

Comments
 (0)