and
or
not
All of the these
Checks if an element exists within a sequence.
Checks for inequality between two variables.
Checks if two variables refer to the same object.
Checks the length of a sequence.
is
in
on
at
64
512
729
Error
None
True
False
equal
5
5.0
10
|
||
&
6
1
2
65
97
32
67
a
b
A
B
\\n
\n
New line
re\new
new
re new
re ew
What will the following code output?
a=‘INFOMAX’ a=10 print(type(a))
<class 'int'>
<class ‘str'>
<class ‘bool'>
a=55 b=55 print( a is not b)
55
TypeError