Python中的模块与函数式最基础的语法调用,一个程序如果没有模块与函数,那么这个程序就是不完整的,本文从模块与函数的注意事项出发,初级代码不再介绍,注意是主要这其中可能出现的问题:
导入库,定义函数,有返回值。
import math
def area(radius):
return math.pi*radius**2 #可选项,可以没有return
print(area(5.5))
print(2*(area(3)+area(4)))
定义相应关键词参数,形参要注意关键词:
def shop(where='store',what='pasta',howmuch='5 pounds'):
print('I want you go to the',where)
print('and buy',howmuch,'of',what+'.')
shop()
shop(what='sugar')
shop(howmuch='2 pounds',what='sugar')
shop(howmuch='2 pounds',what='sugar',where='super market')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)