#函数中已经输出结果,调用函数即可
def fun(x): #函数体 print(x/10) fun(10) fun(20)
#函数中未输出结果,调用函数,再输出结果
def calc(a,b): return a+b x=calc(10,20) y=calc(20,30) print(x) print(y)
标签:10,20,函数,1.9,语法,fun,print,calc From: https://www.cnblogs.com/988MQ/p/16758311.html
#函数中已经输出结果,调用函数即可
def fun(x): #函数体 print(x/10) fun(10) fun(20)
#函数中未输出结果,调用函数,再输出结果
def calc(a,b): return a+b x=calc(10,20) y=calc(20,30) print(x) print(y)
标签:10,20,函数,1.9,语法,fun,print,calc From: https://www.cnblogs.com/988MQ/p/16758311.html