python—day03_函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python—day03_函数相关的知识,希望对你有一定的参考价值。

1,参数

普通参数

# ######### 定义函数 ######### 
# name 叫做函数func的形式参数,简称:形参
def func(name):
    print(name)
    
# ######### 执行函数 ######### 
#  ‘wupeiqi‘ 叫做函数func的实际参数,简称:实参
func(hello world)

 

默认参数

def func(name, age = 18):
    print("%s:%s" % (name, age))


func(gongf, 25)
func(xiaomin)

 

动态参数

def func(*args):
    print(args)

func(11,22,33,44,55)

li = [11,22,33,4,55]
func(*li)

技术分享图片

 

以上是关于python—day03_函数的主要内容,如果未能解决你的问题,请参考以下文章

python16_day03集合函数递归内置函数

python day03

python学习点滴记录-Day03

day03-Python基础

2018-07-03-Python全栈开发day24-面向对象设计

Python For Mac Day_2