Python入门 .变量 常量 基础数据类型 用户输入 流程控制语句 小练习题

# 2.name = input(“>>>”)通过代码来验证name变量是什么数据类型?--str
name = input(">>>")
print(type(name)) # 3.if条件语句的基本结构?
# -if 单 if else if elif elif elif 多选1或0 if elif elif else 多选一 if if 嵌套 if if if 多选 # 4.用print打印出下面内容:
# 文能提笔安天下,
# 武能上马定乾坤.
# 心存谋略何人胜,
# 古今英雄唯世君.
print("文能提笔安天下,\n武能上马定乾坤.\n心存谋略何人胜,\n古今英雄唯世君.") # 5.利用if语句写出猜大小的游戏:
# 设定一个理想数字比如:66,让用户输入数字,如果比66大,则显示猜测的结果大了;如果比66小,则显示猜测的结果小了;
# 只有等于66,显示猜测结果正确。
ANSWER = 66
temp = input("请猜数字: (必须是数字哦!)")
if int(temp)>66:
print("猜测的结果大了")
elif int(temp)<66:
print("猜测的结果小了")
else:
print("猜测结果正确") # 6.提⽰⽤户输入他的年龄, 通过程序进⾏判断.
# 如果小于10,提示小屁孩,如果大于10,小于20,提示青春期叛逆的小屁孩.如果大于20,小于30.提示开始定性,开始混社会小屁孩儿,
# 如果大于30,小于40.提示看老老大不了,赶紧结婚小屁孩儿.如果大于40,小于50.提示家里有个不听话的小屁孩儿.
# 如果大于50,小于60.提示自己马上变成不听话的老屁孩儿.如果大于60,小于70.提示活着还不错的老屁孩儿.
# 如果大于70,小于90.提示人生就快结束了的一个老屁孩儿.如果大于90以上.提示再见了这个世界.
age = input("请输入您的年龄: (必须为数字哦!)")
if int(age) < 10:
print("小屁孩")
elif 10 < int(age) < 20:
print("青春期叛逆的小屁孩")
elif 20 < int(age) < 30:
print("开始定性,开始混社会小屁孩儿")
elif 30 < int(age) < 40:
print("看老老大不了,赶紧结婚小屁孩儿")
elif 40 < int(age) < 50:
print("家里有个不听话的小屁孩儿")
elif 50 < int(age) < 60:
print("自己马上变成不听话的老屁孩儿")
elif 60 < int(age) < 70:
print("活着还不错的老屁孩儿")
elif 70 < int(age) < 90:
print("人生就快结束了的一个老屁孩儿")
elif int(age) > 90:
print('再见了这个世界')
else:
print("倒霉孩儿输入了临界点") # 7.单行注释以及多行注释?
# - # 单行注释 """ """(推荐) ''' ''' 多行注释
# 8.简述你所知道的Python3x和Python2x的区别?
# 1.python2 print 可以不加括号 python3 必须加
# 2.python2 源码不统一 python3 源码统一
# 3.python2 有重复代码 python3 没有重复代码
# 4.python2 整形相除结果是整形 python3 结果是浮点型
# 5.python2 input输入什么类型就是什么类型 raw_input 获取是字符串类型 python3 获取都是字符串类型 # 9.提示用户输入的麻花藤. 判断用户输入的是否正确. 如果对, 提示真聪明, 如果不对, 提示用户输入错误
CLEVER_MARK = "麻花藤"
temp = input("请输入‘麻花藤’三个字: ")
if temp == CLEVER_MARK:
print("真聪明")
else:
print("输入错误") # 10.用户输入一个月份.然后判断月份是多少月.根据不同的月份,打印出不用的饮食(根据个人习惯和老家习惯随意编写)
month = input("您好,今日店庆,请您从1~12中挑选一个数字,每个数字后面有一份免费食物将送给您,请选择: ")
if month == "1":
print("饺子一份")
elif month == "2":
print("汤圆一份")
elif month == "3":
print("春卷一份")
elif month == "4":
print("虾片一份")
elif month == "5":
print("粽子一份")
elif month == "6":
print("冰淇淋一份")
elif month == "7":
print("酸梅汤一份")
elif month == "8":
print("海鲜大咖一份")
elif month == "9":
print("月饼一份")
elif month == "10":
print("手擀面一份")
elif month == "11":
print("酸菜饼子一份")
elif month == "12":
print("粘豆包一份")
else:
print("输入错误,白水一杯") # 11.用户输入一个分数.根据分数来判断用户考试成绩的输出不同的档次
# =90 A
# =80 B
# =70 C
# =60 D
# < 60 不及格
score = input("各位同学,请输入你本次月考成绩,将获取对应的等级(请输入分数): ")
if int(score) >= 90:
print("A")
elif 80 <= int(score) < 90:
print("B")
elif 70 <= int(score) < 80:
print("C")
elif 60 <= int(score) < 70:
print("D")
elif int(score) < 60:
print("不及格")
else:
print("输入错误,该打屁股了!")

  

上一篇:css中width:auto和width:100%的区别是什么


下一篇:[转]order by 与索引