python 函数

Posted 琳淼

tags:

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

#函数
def welcome():
print(‘欢迎你‘)
welcome()

def write_file(file_name,cotent):
f = open(file_name,‘a+‘,encoding=‘UTF-8‘)
f.write(cotent)
f.seek(0)
x = f.read()
print(x)
f.close()

write_file(‘a.txt‘,‘今天天气好晴朗‘)

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

Python函数

Python3 Python 函数式编程

Python2 与 Python3 的 map 函数

Python3基础-函数

Python函数部分

Python 递归函数