horizon2kg 发表于 2023-2-4 11:37:13

真有意思

贾小学 发表于 2023-2-12 23:05:24

{:5_110:}{:5_110:}{:5_110:}

13081871992 发表于 2023-2-14 21:25:33

学习学习

13163979695 发表于 2023-2-16 15:38:01

额外若群翁

221825461 发表于 2023-2-20 16:02:37

优秀

xx1314bbx 发表于 2023-3-23 18:02:24

感谢分享!

match123_xbd 发表于 2023-4-6 17:33:07

{:7_138:}

driftking23 发表于 2023-9-12 12:32:36

大佬您好,想看看代码学习一下

wuhu233 发表于 2023-9-12 15:14:15

66666666666666666666666

hfdxdd 发表于 2024-1-5 14:01:21

谢谢老师,向您学习!

hfdxdd 发表于 2024-1-5 14:35:31

最近刚在学python,学了一点内容,修改一下了楼主的代码,不如楼主的智能,只用了if while:
# 电脑猜数游戏
import random
print("Welcome to boys and girls!欢迎来到电脑猜玩家输入的数字")
computer=random.randint(1,100)
man=int(input("请老玩家输入数字让电脑猜:"))
tries=1
while True:
    print("\n电脑猜的是:",computer)
    if computer>man:
      print("电脑猜大了!")
      computer-=1
      computer=random.randint(1,100)
    elif computer<man:
            print("电脑猜小了!")
            computer+=1
            computer=random.randint(1,100)

    else:
      print("\n电脑猜的数字是:",computer)

      print("\n太棒了!电脑猜对了,真是个聪明的电脑!")
      break
页: 1 2 3 4 5 6 7 8 9 [10]
查看完整版本: python让电脑猜玩家的数字(智慧版)