求帮助
设计游戏那一集里代码可以跑起来,但是输入一个字符后却弹出来异常,是为什么Python 3.10.5 (tags/v3.10.5:f377153,Jun 6 2022, 16:14:13)[MSC v.1929 64 bit (
Type "help", "copyright", "credits" or "license()" for more information.
RESTART:C:/Users/LT/Desktop/Python学习/game.py
===
你是谁:我是你霸霸
Traceback (most recent call last):
File"C:/Users/LT/Desktop/Python学习/game.py",line 4,in <module>guess = int(temp)
ValueError:invalid literal for int()with base 10:'我是你霸霸'
temp=input("你是谁:")
你是谁:我是你霸霸 guess = int(temp)
改成
guess = temp 原因在于guess = int(temp)的意思是将temp转化为整数,也就是将你所输入的内容转化成整数
而'我是你霸霸'这个输入是不能转化成整数的,所以报出了无法转化为整数的错误
页:
[1]