python 函数

2021/5/2 12:28:10

本文主要是介绍python 函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#函数==方法
#提高的代码复用性,简化代码
例子:
def hello():
    print('hello')


def welcome(name,country="中国"):
    return name,country

def test():
    return

r = hello()
print('没有写return',r)
print('return多个值的时候', welcome("小黑") )
print( 'return后面啥也不写',test() )



#函数里面定义的变量都是局部变量,只在函数内部生效
#函数里面只要遇到return函数立即结束
def op_file(filename,content=None):
    with open(filename,'a+',encoding="utf-8") as f:
        f.seek(0)
        if content:
            f.write(content)
        else:
            result = f.read()
            return result


content = op_file("student2.json")
print(content)




这篇关于python 函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程