0
Python code pblm
Why the value of this code is only 3? Why not 3 and 7? num=7 if num>3: print("3") if num<5: print("5") if num==7: print("7")
2 Antworten
+ 2
This is because "if num==7" is a statment of "if num<5"
0
Thank you
Why the value of this code is only 3? Why not 3 and 7? num=7 if num>3: print("3") if num<5: print("5") if num==7: print("7")