ValueError: invalid literal for int() with base 10

这是在将字符串转为数字时遇到的错误,假如你的字符串是类似于‘10.3’这样,而你直接用int('10.3')将这个数字转为整形就会报这个错误,正确做法应该是int(float('10.3'))

你可能感兴趣的:(python)