摘要: 1、函数定义与调用 # 定义函数与调用 def hello(): print('hello world') hello() def area(width, height): return width * height print('area is:', area(4, 5)) 2、变量传递 # 变量 阅读全文
posted @ 2019-12-23 23:33 wbz_blogs 阅读(228) 评论(0) 推荐(0)