If-else statementnum = 5if num == 5: print("Number is 5.") if num == 10: print("Number is 10.")else: print("Condition is false!!!")
Post a Comment