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

Python默认参数

时间:2019-09-01 10:57:37      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:ret   return   ota   tween   ber   hat   must   can   between   

在python函数中,

可以使用如下方式声明并初始化参数

 

def to_smash(total_candies, n_friends=3):

  """Return the number of leftover candies that must be smashed after distributing
  the given number of candies evenly between 3 friends.

  >>> to_smash(91)
  1
  """

  return total_candies%n_friends

 

在此函数中,默认参数是3

Python默认参数

标签:ret   return   ota   tween   ber   hat   must   can   between   

原文地址:https://www.cnblogs.com/zhichun/p/11441499.html

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