手记

一些基础的python语句7 关于函数

基础类型


def add(num1,num2):
    return(num1+num2)
print(add(7,15))

用关键字来索引参数


def say(name1,words):
    print(name1,'-->',words)

有默认参数的函数


def saysome(name2='长相思面',say2='见到你很开心'):
    print(name2,say2)

这里如果saysome()有参数就按输入的参数为准,没有参数就按默认的参数输入


收集参数/参数前加上星号


def test(*words2):
    print(len(words2))

输入的效果,结果

1人推荐
随时随地看视频
慕课网APP