创建txt文档并写入内容 txt文件怎么创建

【创建txt文档并写入内容 txt文件怎么创建】背景:自动调用函数创建txt文件,并向其写入所需要的内容 。告别右键新建,手动写入内容的麻烦 。
import os current_dir = os.path.dirname(__file__)# 创建一个txt文件,文件名为mytxtfile,并向文件写入msgdef text_create(name, msg):full_path = current_dir + name + '.txt'# 也可以创建一个.doc的word文档file = open(full_path, 'w')file.write(msg)#msg也就是下面的Hello world!# file.close()# 调用函数创建一个名为mytxtfile的txt文件,并向其写入Hello world!text_create('mytxtfile', 'Hello world!')