摘要: #### 定义函数 ```python#定义函数def function(): print("hello world")#调用函数function() #输出结果hello world``` #### 函数参数 ```python#1.函数参数类型:实参、形参和无参数#2.实参:函数调用时候参数,实 阅读全文
posted @ 2019-12-10 10:47 zhouhaiwu 阅读(122) 评论(0) 推荐(0) 编辑