码迷,mamicode.com
首页 > 编程语言 > 详细

python 函数

时间:2019-11-16 12:36:28      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:name   com   seek   函数   python 函数   file   coding   pen   print   

#函数
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 函数

标签:name   com   seek   函数   python 函数   file   coding   pen   print   

原文地址:https://www.cnblogs.com/lqcjlu/p/11871071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!