1.什么是函数
1.1 函数是组织好的,可以重复使用的,实现单一功能的代码段
1.2 函数有输入(参数)和输出(返回值)
1.3 python中,函数是一等对象(first clas)
函数的定义与调用:
In [33]: def fn(): ....: pass ....: In [34]: fn() In [35]: def fn(): ....: print (‘test fn‘) ....: In [36]: fn() test fn
如果里面有赋值,创建新的变量,没有赋值,就用原来的变量的值。
In [43]: lst=[1,2,3] In [44]: def append(item): ....: lst.append(item) ....: In [45]: append(4) In [46]: lst Out[46]: [1, 2, 3, 4]
时间: 2024-11-10 01:21:47