函数简介:
1.函数也是一个对象,对象是内存中专门用来存储数据的一块区域
2,函数可以用来保存一些可执行的代码,并且可以在需要时对这些语句进行多次的调用。
3,创建函数:语法
def 函数名([形参1,形参2........形参n])
defhello(): print('hello Python') print('小学语文朗读') print('今天过的还不错') hello() hello() hello() hello()
hello函数被执行了4次
函数简介:
1.函数也是一个对象,对象是内存中专门用来存储数据的一块区域
2,函数可以用来保存一些可执行的代码,并且可以在需要时对这些语句进行多次的调用。
3,创建函数:语法
def 函数名([形参1,形参2........形参n])
defhello(): print('hello Python') print('小学语文朗读') print('今天过的还不错') hello() hello() hello() hello()
hello函数被执行了4次