python函数参数的类型

函数参数的类型:int str float bool list dict set tuple function(特殊的类型)

def test():
    print('------test')

def test1():
    print('------test1')
#函数可以作为参数存在
def func(f):
    f()
    test1()

func(test)
#------test
#------test1
发布了18 篇原创文章 · 获赞 3 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/wangxiaolin1992/article/details/104832596