cmp() compares two objects, say, obj1 and obj2 : Cmp : Buildin Function PYTHON TUTORIALS


PYTHON TUTORIALS » Buildin Function » Cmp »

 

cmp() compares two objects, say, obj1 and obj2


# cmp() returns a negative number (integerif obj1 is less than obj2, 
# cmp() returns a positive number if obj1 is greater than obj2, 
# cmp() returns zero if obj1 is equal to obj2. 

a, b = -412
print cmp(a,b)
print cmp(b,a)
b = -4
print cmp(a,b)
a, b = 'abc', 'xyz'
print cmp(a,b)
print cmp(b,a)
b = 'abc'
print cmp(a,b)

print cmp(-62)
print cmp(-4.333333, -2.718281828)
print cmp(0xFF255)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Buildin Function
» Cmp