import math # 函数 --> 把一个代码片段用一个盒子装起来,并取一个名字,在任意位置,要使用的使用,直接通过名字调用 # def 盒子名称(): # pass def test01(): # 逻辑运算符 and or not ! # 输入一个分数,判断该分数是ABCD中哪一级(A:[90, 100],B:[70, 90),C:[60,70),D:[0,60)) score = float(input('请输入一个分数:')) if score>=90 and score <=100: # if 100 >= score >=90: print('A') elif score>=70 and score < 90: # if 100 >= score >=90: print('B') elif score>=60 and score < 70: # if 100 >= score >=90: print('C') elif score>=0 and score < 60: # if 100 >= score >=90: print('D') def test02(): # 输入x值,输出y的值:y = {█(2x(x > 5) @ 10 - x(x < 5) @ x - 2(x=5))┤ x = float(input('输入x值ÿ
Python第八周家庭作业答案
最新推荐文章于 2024-11-08 19:26:05 发布
本文提供了Python编程的一些基础练习题的解答,包括逻辑运算、条件判断、数学计算、字符串操作等方面,适合初学者巩固知识。
摘要由CSDN通过智能技术生成