Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我目前是 python 语言的初学者,它也是我的第一语言。我需要一些帮助我发现很难知道使用什么来生成永久目录子目录和文件,例如;如果目录等不存在,我希望路径生成我输入的任何路径,我希望创建它们,所以我输入 C:\user\python\directory\sub-directory\file,然后我无法锻炼我应该做什么导入以完成以下工作。
我正在使用 Python 3.2,有什么建议吗?
你可以做:
import os os.makedirs('a/b/c', exist_ok=True)
http://docs.python.org/py3k/library/os.html
f = open("c:\file\path","w") f.write("content of file")
首先,您打开文件,将其存储在变量f.
f
然后你写它,使用f.write()
f.write()
我认为,如果文件和路径不存在,Python 将创建它。(我确定我以前做过,但我不记得了)
使用完文件后,您应该使用
f.close()
安全地关闭文件。