Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
x = 2
x = 15

if x <= 10:
print("x is less than or equal to 10.")
elif x <= 25:
if x <= 25 and x > 10:
print("x is greater than 10, but less than or equal to 25.")
else:
if x > 25:
print("x is greater than 25.")