【Python基础】Python中的函数函数
函数# 如何定义一个函数def hello(): print('hello') print('python')# 位置参数:形参和实参必须保持一致# 按照位置传递参数def getinfo(name,age): print('name is',name,'age is',age)getinfo(name='westos',age=12)-------------------------------结果: name is westos age is 12