如果 int()的参数是非数字的字符串,则会产生这个报错。
举例:
int('a')
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
int('a')
ValueError: invalid literal for int() with base 10: 'a'
如果 int()的参数是非数字的字符串,则会产生这个报错。
举例:
int('a')
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
int('a')
ValueError: invalid literal for int() with base 10: 'a'