+ 15
In what situation this code is used since nothing get printed and no errors
if not True: print("1")
3 Respostas
+ 3
if the whole program consists of those 2 lines, then this code achieves nothing.
+ 1
It is never printed because "not true" is not "true" in any case.
+ 1
"not true" is same as false. That can be used in place of false. That not withstanding, you may prefer to use the false statement rather than "not true" since it takes lesser space