1 Star 0 Fork 0

roohom/Program_100Days

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/3/23 23:35
# @Author : Roohom
# @Site :
# @File : test.py
# @Software: PyCharm
import random
secert = random.randint(1,100) #计算机随机生成一个数
##times = 3 #初始化用户的次数是三次
flag = 1
while flag:
#a = int(input("输入数字"))
times = 3
while times:
num = input("请输入一个数字:")
if num.isdigit():
tmp = int(num)
if tmp == secert:
print("你猜对啦!")
break
elif tmp > secert:
print("你的数字太大啦!")
times = times - 1
else:
print("你的数字太小啦!")
times = times - 1
else:
print("叫你输入一个数字!!")
if times==0:
print("你的机会用完了!")
else:
pass
game = input("你是否想要继续游戏?Y/N:")
if game == "Y":
flag = 1
else:
flag = 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/roohom/Program_100Days.git
git@gitee.com:roohom/Program_100Days.git
roohom
Program_100Days
Program_100Days
master

搜索帮助