Mega Code Archive

 
Categories / Python / Data Type
 

Mixed-type conversions

a = 3           # name created b = 4 print 2 + 4.0, 2.0 ** b   # mixed-type conversions