“”"
练习:根据输入的季节获取对应的月份
“”"
while True:
dict_season = dict([
("春", (1, 2, 3)),
("夏", (4, 5, 6)),
("秋", (7, 8, 9)),
("冬", (10, 11, 12))
])
season = input("请输入季度:")
if season in dict_season:
for key, values in dict_season.items():
if key == season:
print(str(values)+"月份")
break
else:
print("输入有误!")
“”"
练习在控制台中录入多个学生的姓名、性别、成绩、年龄
“”"
dict_students_info = {
}
while True:
name

这篇博客包含了一系列Python基础练习,包括根据季节获取对应月份、录入学生信息、创建调查问卷、找闰年、商品信息展示、城市景点与美食列举以及字符串字符统计。此外,还有一个猜拳游戏,用户与系统进行石头、剪刀、布的对决。
最低0.47元/天 解锁文章
731

被折叠的 条评论
为什么被折叠?



