+ 2
What is the result of this code?
If not True print(''1") elif not (1+1==3): print("2") else: print("3")
6 odpowiedzi
+ 1
AJ #infinity love thanks have changed 👊👊💯
+ 3
Rashid hussein It's not related to html. So tag proper Language otherwise no-one can tell you.
It's related to python so you can check in Code Playground.
And also according to your problem there should be print("1") not print('1")
+ 2
It's a Python code but it has some few syntax errors and valueError
+ 2
Thanks
0
After if not True there has to be a colon ie;
if not True:
Otherwise there will be a syntax error
0
3