+ 3
pls what is the result of this code if not true print("1") elif not(1+1==3): print("2") else print("3")
7 Respostas
+ 12
The answer is 2 'cause "if not True" gives False which means the program goes to elif. "Not 1+1 ==3" is True which means the program print 2
+ 1
thnx.
0
2 is the answer
0
Thanks guys
0
2
0
2 bcos if not makes false
- 1
2