Valueerror: Nieprawidłowy literał dla int () z bazą 10: Witryna: Stackoverflow.com

# Just for the record:
print(int('55063.000000'))

#Traceback (most recent call last):
  #File "<stdin>", line 1, in <module>
#ValueError: invalid literal for int() with base 10: '55063.000000'

# use this
print(int(float('55063.000000')))
Shanti