周末在家研究这个东西,则找到解决方案。
费话少说,上代码
#定义一个自定义的函数,如下
#函数的名称必须是字母和数字的组合,不能用数字开头
#函数名后用小括号括住入参,可以用逗号分隔多个
#如果有返回值用return ,如果没有返回值,默认返回None def PanDuanFenShu(score):
if 100 >= score >= 90:
print("A")
if 90 > score >= 80:
print("B")
if 80 > score >= 60:
print("C")
if 60 > score >= 0:
print("D")
if score < 0 or score > 100:
print("输入错误") def PanDuanFenShu2(score):
if 100 >= score >= 90:
return 'A'
if score >= 80:
return 'B'
if score >= 60:
return "C"
if 60 > score >= 0:
return 'D'
if score < 0 or score > 100:
return '输入错误'
调用时的代码
#引入自定义模块
import sys #注意自定义模块的路径字符串前有r
sys.path.append(r"d:\Users\Admin\Desktop\lianxi") #这句是必须的
import fenshu #调用前需要加文件名与小数点
fenshu.PanDuanFenShu(9)