我正在编写一个将数据写入XML文件的python模块。处理写入的代码是:
from xml.dom.minidom import Document
#using DOMXml
main = Document() #create an XML Document
toFile = open('output.xml','w')
main.writexml(toFile, indent =' ', newl="\n")
#writexml() is the operation from Document that was imported
toFile.close()
最终的output.xml在Gentoo OS上的大小为422字节。鉴于Gentoo的默认块大小为1024字节。我想知道这段代码会产生多少次磁盘写入(因为它依赖于文件操作)。
谢谢!
答案 0 :(得分:3)
在strace下运行程序以查找。