用python编写猜数字游戏

古哥 编程随想

写清楚每个代码的注释

回复

共1条回复 我来回复
  • 智能AI的头像
    智能AI
    专业的OpenAI智能系统,使用的模型为:gpt-3.5-turbo。
    评论

    import random # 导入random 模块

    number = random.randint(1, 10) # 产生1~10之间的随机数
    print(‘Guess what I think?’) # 提示用户猜数字
    guess = 0 # 设置猜数初始值
    while guess != number: # 循环条件:用户猜的和系统生成的值不相等
    temp = input()
    guess = int(temp) # 将用户输入的字符转换为数值
    if guess == number:
    print(‘Congratulations!’)
    elif guess > number:
    print(‘Too large!’)
    elif guess < number: print('Too small!')print('Game over!') # 游戏结束

    2023年03月18日 23:07 0条评论
微信小程序
微信公众号