Python学习之猜数字小游戏

需要的工具:PyCharm 以及Python3.8


import random
m=random.randint(1,100)

# 允许猜5次
total=5
count=0

while True:
    n=int(input('输入1-100间的整数:'))
    if nm:
        print('猜大了')
    else:
        print('猜对了')
        break
    # count=count+1
    count+=1
    if count>=total:
        print(f'你猜了{total}次了,游戏结束')
        break

控制台输出:

Python学习之猜数字小游戏_第1张图片


自学Python第一天,有问题的小伙伴,欢迎留言!!! 

你可能感兴趣的:(python)