|   | 1 |  initial version  | 
The python operator you are looking for is !=.
x = 5
y = 3
print(x != y)
returns True.
|   | 2 |  No.2 Revision  | 
The python operator you are looking for is !=.
x = 5
y = 3
print(x != y)
x != y
returns True.
|   | 3 |  No.3 Revision  | 
The python operator you are looking for is !=.
x = 5
y = 3
x != y
x != y
returns True.
|   | 4 |  No.4 Revision  | 
The python operator you are looking for is !=.
x = 5
y = 3
x != y
returns True.
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.