鱼C论坛

 找回密码
 立即注册
查看: 113|回复: 3

教材上输入Python程序不运行,不清楚问题在哪里?

[复制链接]
发表于 6 天前 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#This is a guess the number game 这是一个猜数字游戏
import random
secretNumber = random.randint(1,20)#输入一个1-20的整数
print('I am thinking of a number between 1 and 20.')
#Ask the Player to guess 6 times.
for guessesTaken in range(1,7):
    print('Take a guess.')
   
    guess = input('请输入你的猜测:')
    if guess < secretNumber:
           print('Your guess is too low.')
    elif guess > secretNumber:
           print('Your guess is too high.')
    else:
        break # This condition is the correct guess!
if guess == secretNumber:
   print('Good job! You guessed my number in ' + str(guessesTaken) + ' guesses!')
else:
   print('Nope.The number I was thinking of was ' + str(secretNumber))
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 6 天前 | 显示全部楼层
还是不行,走到这就不动了!没办法输入数字!

I am thinking of a number between 1 and 20.
Take a guess.
请输入你的猜测:
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-11-1 04:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表