Python第二周

Python第二周

 

 

money_all = 56.75 + 72.91 + 88.50 + 26.37 + 68.51
money_all_str = str(money_all)
print("商品总金额为:" + money_all_str)
money_real = int(money_all)
money_real_str = str(money_real)
print("实收金额:" + money_real_str)
print("学号:3033")

Python第二周

 

 

python = 95 #定义变量,储存Python课程的分数
english = 92 #定义变量,储存English课程的分数
c = 89 #定义变量,储存C语言课程的分数
#输出三个变量的值
print("python = " + str(python) + "english = " + str(english) + "c = " + str(c) + "\n")
print("python < english的结果: " + str(python < english)) #小于操作
print("python > english的结果: " + str(python > english)) #大于操作
print("python == english的结果: " + str(python == english)) #等于操作
print("python != english的结果: " + str(python != english)) #不等于操作
print("python <= english的结果: " + str(python <= english)) #小于或等于操作
print("english >= c的结果: " + str(english >= c)) #大于或等于操作
print("3033")

Python第二周

 

 Python第二周

 

 

print("\n手机店正在打折,活动进行中……")
strweek = input("请输入中文星期(如星期一) : ")
intTime = int(input("请输入时间中的小时(范围:0~23) : "))
#判断是否满足活动参与条件(使用了if条件语句)
if (strweek == "星期二" and (intTime >= 10 and intTime <= 11)) or (strweek == "星期五" and (intTime >= 14 and intTime <=15)):
print("恭喜您,获得了折扣活动参与资格,快来领取吧!")
else:
print("对不起,您来晚一步,期待下次活动……")
print("3033")

上一篇:2021-2022-1 20211327《信息安全专业导论》第八周学习总结


下一篇:python任务11