coerce() returns a tuple containing the converted pair of numbers : coerce « Buildin Function « Python Tutorial






print coerce(1, 2)
print coerce(1.3, 134L)
print coerce(1, 134L)
print coerce(1j, 134L)
print coerce(1.23-41j, 134L)








13.8.coerce
13.8.1.coerce() returns a tuple containing the converted pair of numbers