Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The python operator you are looking for is !=.

x = 5
y = 3
print(x != y)

returns True.

click to hide/show revision 2
No.2 Revision

The python operator you are looking for is !=.

x = 5
y = 3
print(x != y)

x != y

returns True.

click to hide/show revision 3
No.3 Revision

The python operator you are looking for is !=.

x = 5
y = 3
x != y

x != y

returns True.

click to hide/show revision 4
No.4 Revision

The python operator you are looking for is !=.

x = 5
y = 3
x != y

returns True.