not
or
and
xor
~
|
&
^
skip
continue
break
pass
assert
for
while
if
exit
range()
input()
len()
list()
What is the output of following code
print( 5 in 515)
True
False
TypeError
ValueError
What will be the output?
x = 10 y = x x = 20 print(y)
10
20
Error
None
+
*
**
//
What is the output?
x = 5 print(bool(x))
5
print(2 ** 3 ** 2)
64
512
256
36