1.参数类型
①位置参数
def hello_1(greeting,name):
print(’%s,%s’%(greeting,name))
hello_1(‘Hi’,‘John’)
Hi,John
②关键字参数
③默认参数
④可变参数(收集参数)
⑤参数解包
2.初始化数据结构
未完待续……
1.参数类型
①位置参数
def hello_1(greeting,name):
print(’%s,%s’%(greeting,name))
hello_1(‘Hi’,‘John’)
Hi,John
②关键字参数
③默认参数
④可变参数(收集参数)
⑤参数解包
2.初始化数据结构
未完待续……