1 """用Pythons设计第一个游戏""" 2 temp=input("不妨猜一下我现在的心里想的是什么") 3 guess=int(temp) 4 5 if guess==8: 6 print("你是我肚里的蛔虫嘛?") 7 print("哼唧哼唧") 8 else: 9 print("猜错了!是8,是8!") 10 11 print("游戏结束")