python命名關鍵字參數有什么用?
1、說明
*,nkw表示命名關鍵字參數,是用戶想輸入的關鍵字參數名稱,定義方式是在nkw前追加*
2、作用
限制調用者傳達的參數名稱。
3、實例
#命名關鍵字參數
defprint_info4(name,age=18,height=178,*,weight,**kwargs):
'''
打印信息函數4,加入命名關鍵字參數
:paramname:
:paramage:
:paramheight:
:paramweight:
:paramkwargs:
:return:
'''
print('name:',name)
print('age:',age)
print('height:',height)
print('keyword:',kwargs)
print('weight:',weight)
print_info4('robin',20,180,birth='2000/02/02',weight=125)
以上就是python命名關鍵字參數的使用,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。