5-函数

Posted waox

tags:

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

"""
def getName():
    print("name")
getName()
"""
#带参数的函数
"""
def set(name,sex,age):
    print(name,sex,age)
set("xiaoming","men",14)
set(age="30",sex="man",name="xiaoliang")
"""
#不定长传参
"""def girlFriends(first,second,*other):
    print("王子川的第一个女朋友事:",first)
    print("王子川的第er个女朋友事:",second)
    print(other)
    pass
girlFriends("小芳","张光磊","小薇","小花")
"""

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

VSCode自定义代码片段5——HTML元素结构

VSCode自定义代码片段5——HTML元素结构

VSCode自定义代码片段5——HTML元素结构

Laravel 5.8 有条件地插入 sql 片段

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

在 Visual Studio 中创建构造函数的代码片段或快捷方式