0
question about if statements.
if num > 3: print("3") if num < 5: print("5") if num ==7: print("7") This is the question My answer is 3 But I dont know why their is no output for if num==7 print("7")
2 Answers
+ 18
"if num == 7" is located inside the "if num < 5"
...I hope you got the rest......
+ 1
Oke thanks