Python:ValueError: invalid literal for int() with base 10: ‘‘

int()函数可以将字符串转换为整型,但是切记int()只能转化由纯数字组成的字符串。
非纯数字组成的字符串强转为整型会报错:ValueError: invalid literal for int() with base 10

你可能感兴趣的:(Python编程,报错解决,python,字符串)