invalid literal for int() with base 10: 'i' code example
Example 1: ValueError: invalid literal for int() with base 10: site:stackoverflow.com
# Just for the record:
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
int(float('55063.000000'))
Example 2: Python ValueError: invalid literal for int() with base 10:
# try using int(float(x)) as per the example below... Worked for me :)
int(float('55063.000000'))
# expected output: 55063.0