python函数如何设置默认值 python函数的默认值设定

主机教程 建站分享 2年前 (2022-12-11) 559次浏览

文章摘要:python函数如何设置默认值 python函数的默认值设定

在python中使用def关键词给函数设置默认值,具体方法如下: def关键词语法: def 函数名(..., […]

在python中使用def关键词给函数设置默认值,具体方法如下:

def关键词语法:

def 函数名(...,形参名,形参名=默认值):

代码块

使用方法:

def dis_str(str1,str2 = "http://www.baidu.com/python/"):

print("str1:",str1)

print("str2:",str2)

dis_str("http://www.baidu.com/shell/")

dis_str("http://www.baidu.com/java/","http://www.baidu.com/golang/")

输出结果为:

str1: http://www.baidu.com/shell/

str2: http://www.baidu.com/python/

str1: http://www.baidu.com/java/

str2: http://www.baidu.com/golang/


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python函数如何设置默认值 python函数的默认值设定
文章链接:http://www.7966.org/post/14361.html
转载请注明出处

喜欢 (0)