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 函数的主要内容,如果未能解决你的问题,请参考以下文章