casting python float to int

float1=1.2345
int1=int(float1)
Elated Eland