Python 模块与函数的应用

Python 模块与函数的应用,第1张

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')

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/869813.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存