python怎么创建word文件?
读取config中info段中的name变量值.最后讲讲如何设置值.使用set(段名,变量名,值)来设置变量.config.set(""info"",""age"",""21"")表示把info段中age变量设置为21.就这么简单.
如何用Python创建生成xml文档文件的方法?
#设置根节点
root = Element("bookstore")
tree = ElementTree(root)
#设置1级子节点
child0 = Element("book", {"category" : "COOKING"} )
root.append(child0)
#设置2级子节点
child00 = Element("title", {"language" : "English"} )
child00.text = "Everyday Italian" #2级子节点文本
child0.append(child00)
tree.write("test.xml", "utf8")
其他的依照上述代码编写即可
用python怎么创建一个文件?
with open("test.txt","w") as f:
f.write("hello world") #创建文件test.txt并写入hello world