practice_1(猜数字小游戏)
【摘要】 10 < cost < 50 的等价表达式
cost = 40
# (10<cost) and (cost>50)
10 < cost <50
123
True
1
使用int()将小数转换成整数,结果是向上取整还是向下取整
print(int(3.4)) # 向下取整
1
3
1
写一个程序,判断给定年份是否为闰年
闰...
10 < cost < 50 的等价表达式
cost = 40
# (10<cost) and (cost>50)
10 < cost <50
- 1
- 2
- 3
True
- 1
使用int()将小数转换成整数,结果是向上取整还是向下取整
print(int(3.4)) # 向下取整
- 1
3
- 1
写一个程序,判断给定年份是否为闰年
- 闰年的定义:能够被4整除的年份就叫闰年
6 % 4
- 1
2
- 1
year = input("请输入年份:")
# 判断用户输入的是否为数字
if year.isdigit(): year = int(year) if year % 4 == 0: print(str(year) + "是闰年") else: print(str(year) + "不是闰年")
else: print("请输入年份!!")
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
请输入年份:2000
2000是闰年
- 1
- 2
"1" + 1
- 1
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-8-ec358fc6499a> in <module>
----> 1 "1" + 1
TypeError: can only concatenate str (not "int") to str
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
给用户三次机会,猜想我们程序生成的一个数字A,每次用户猜想过后会提示数字是否正确以及用户输入的数字是大于还是小于A,当机会用尽后提示用户已经输掉了游戏
import random
secert = random.randint(1,100) # 计算机生成一个随机数
times = 3 # 初始化用户的次数是3
while times: num = input("请输入数字: ") if num.isdigit(): temp = int(num) if temp == secert: print("你猜对了!!") break elif temp < secert: print("你的数字太小了") times = times - 1 else: print("你的数字太大了") times = times - 1 else: print("请输入数字!!") print("你的机会用完了")
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
请输入数字: 78
你的数字太大了
请输入数字: 70
你的数字太小了
请输入数字: 76
你的数字太大了
你的机会用完了
- 1
- 2
- 3
- 4
- 5
- 6
- 7
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/90110152
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)