Nieprawidłowy literał dla int () z bazą 10 w Pythonie

#avoiding invalid literal is to take float format and cover it with int
print(int(float('55063.000000')))
Paimon