Python Casting Float to Int

float1=1.2345
int1=int(float1)
Elated Eland