小甜心 发表于 2020-5-22 00:00:00

求大佬解惑,新手上路

print('----------我是小可爱----------')
temp = input("不妨猜一下我心里想的是啥":)
guess = int(temp)
if guess == 8:
    print("我擦,不愧是懂我的")
    print("哼,猜中了没有奖励哦")
else:
    print("你以前都是骗我的吗?我心里想的是8!")
print("游戏结束啦,不玩啦")



这个一直提示语法错误,在if guess == 8:这一选项中

yjptx121 发表于 2020-5-22 00:14:23

temp = input("不妨猜一下我心里想的是啥:")

这一句的冒号放到双引号里面就可以了

Twilight6 发表于 2020-5-22 00:21:42

temp = input("不妨猜一下我心里想的是啥":)你这代码错了~~把引号放外面来了

其他没什么错~

heidern0612 发表于 2020-5-22 07:36:12

if guess == 8: 这一行上下找一找错误,

temp = input("不妨猜一下我心里想的是啥":)要把冒号包在字符串内部。

康王duang 发表于 2020-5-22 08:13:33


temp = input("不妨猜一下我心里想的是啥:")

冒号放到双引号里面就可以了
页: [1]
查看完整版本: 求大佬解惑,新手上路