美文网首页
python自学计划-函数-12

python自学计划-函数-12

作者: 你缺少想象力 | 来源:发表于2018-12-12 03:32 被阅读0次

    python中的函数定义
    例子:

    def show():
        print('hello 方法')
    show()
    
    def show(name):
        print(name)
    show('张三')
    
    def getName(name):
        return name
    print(getName('李四'))
    
    # 列表为参数,类似java中的(int ...args)
    def getMore(*args):
        return args
    more = getMore(1,2,3)
    
    print(more)
    

    运行结果:

    hello 方法
    张三
    李四
    (1,)
    

    相关文章

      网友评论

          本文标题:python自学计划-函数-12

          本文链接:https://www.haomeiwen.com/subject/eeayhqtx.html