ValueError: invalid literal for int() with base 10: 'q'

相识满天下,知心能几人

源码

def even_odd():
    n = input('please input a num: ')
    n = int(n)
    if n<22:
        print('you are young')
    else:
        print('you are old')

def main():
    while(True):
        even_odd()
        
if __name__=='__main__':
    main()

报错

================= RESTART: C:/Users/Lin/Desktop/test/test.py =================
please input a num: q
Traceback (most recent call last):
  File "C:/Users/Lin/Desktop/test/test.py", line 14, in <module>
    main()
  File "C:/Users/Lin/Desktop/test/test.py", line 11, in main
    even_odd()
  File "C:/Users/Lin/Desktop/test/test.py", line 3, in even_odd
    n = int(n)
ValueError: invalid literal for int() with base 10: 'w'
>>> 

原因

input函数接收用户输入返回的是一个字符串,即便接收的是数字,返回的也是纯数字的字符串。
int函数只能转换纯数字的字符串为整型,上面就是因为输入了字母 q才报错

补坑

如果将 '2.6' 强行转换为 int 也不可,因为有小数点,不是纯数字。可以使用 float('2.6') 进行转换。

                                                                                                                                                                      猪头
                                                                                                                                                                   2020.4.21

你可能感兴趣的:(Python,self_taught)