zoukankan      html  css  js  c++  java
  • python自学第7天,函数,参数

    函数:逻辑结构化和过程化的一种编程方法

    面向对象---》类 class

    面向过程---》过程 def

    函数编程---》函数def

    import time
    def logger():
        time_format='%Y-%m-%d %X'#格式化时间
        timecurrent=time.strftime(time_format)
        with open("log.txt","a+",encoding="utf-8") as f:
            f.write("%s hello.............
    "%(timecurrent))
    def test1():
        print("this is test1")
        logger()
    def test2():
        print("this is test2")
        logger()
    def test3():
        print("this is test3")
        logger()
    
    test1()
    test2()
    test3(
    

      函数的优点:

    1.代码重用

    2.一致性

    3.可扩展性

    def test1():
        print("in this is test1")
    
    def test2():
        print("in this is test2")
        return 1
        print("return 以后")#只要先返回return 这行就不执行
    
    def test3():
        print("in this is test3")
        return 0,"hello",["apple","banner"],{"name":"hunter"}
    x=test1()
    y=test2()
    z=test3()
    
    print(x)#返回none
    print(y)#返回一个object
    print(z)#返回一个元组
    

      

    def test(x,y,z):
        print(x)
        print(y)
        print(z)
    
    test(1,z=2,y=3)#如果有传递的参数既有位置参数又有关键参数,必须是位置参数优先。
    

     

    def test(*args):#参数组 接受n个位置参数,转换成元组的形式
        print(args)#一个元组
    
    test(1,2,3,4,5)
    test(*[1,2,3,4,5,6])
    
    
    def test1(x,*args):#位置参数,参数组
        print(x)
        print(args)
    
    test1(1,2,3,4,5)
    
    def test2(**kwargs):#kwargs 把n个关键字参数 转换成字典的形式
        print(kwargs)
    test2(name="hunter",age=18,sex="man")
    test2(**{'name':'hunter','age':20})
    
    #位置参数不能写在关键参数后面
    
    #大融合
    def test3(name,age=18,*args,**kwargs):
        print(name)
        print(age)
        print(args)
        print(kwargs)
    
    test3("hunter",27,1,2,3,4,sex='man')#位置参数,关键参数,
    

      注意:位置参数不能放在关键参数后面,*args是n个位置参数转换为元组,**kwargs是n个关键参数转换为字典。

     

  • 相关阅读:
    hadoop中使用hprof工具进行性能分析
    hadoop map端的超时参数
    一次hadoop集群机器加内存的运维过程
    算法学习-回溯法
    项目中Map端内存占用的分析
    hadoop Shuffle Error OOM错误分析和解决
    算法学习-动态规划
    项目中Map端数据处理不均匀性分析
    《Hadoop技术内幕》读书笔记——Task运行过程分析
    jsp里更新Clob类型字段数据
  • 原文地址:https://www.cnblogs.com/hunterYi/p/8777008.html
Copyright © 2011-2022 走看看