Mega Code Archive

 
Categories / Python / Data Type
 

Define and use int

a = 3           # name created b = 4 print b * 3, b / 2        # multiplication (4*3), division (4/2)