码迷,mamicode.com
首页 > 编程语言 > 详细

Python自定义函数的参数

时间:2018-06-05 18:36:31      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:receives   不同的   定义函数   函数   UNC   types.h   ext   href   ppi   

在Python中自定义的函数可以有三类不同的参数

  • formal parameters
  • positional arguments
  • Keyword Arguments

 

When a final formal parameter of the form **name is present, it receives a dictionary (see Mapping Types — dict) containing all keyword arguments except for those corresponding to a formal parameter. This may be combined with a formal parameter of the form *name (described in the next subsection) which receives a tuple containing the positional arguments beyond the formal parameter list. (*name must occur before **name.) For example, if we define a function like this:

Python自定义函数的参数

标签:receives   不同的   定义函数   函数   UNC   types.h   ext   href   ppi   

原文地址:https://www.cnblogs.com/yanzibuaa/p/9141051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!