x = 53
if x > 10:
----print("Above ten,")
----if x > 20:
--------print("and also above 20!")
----else:
--------print("but not above 20.")
else:
----print("Less than 10")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
x = 53
if x > 10:
----print("Above ten,")
----if x > 20:
--------print("and also above 20!")
----else:
--------print("but not above 20.")
else:
----print("Less than 10")