Python3 文件
Posted vigossr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 文件相关的知识,希望对你有一定的参考价值。
f=open(‘C:\Users\fengx\Desktop\sharing\test.txt‘)
如果打开文件的格式不匹配,可能会报如下错:
>>> open(‘C:UsersfengxDesktopsharingsearch_words_in_dir.py‘) SyntaxError: (unicode error) ‘unicodeescape‘ codec can‘t decode bytes in position 2-3: truncated UXXXXXXXX escape
不要直接使用open(xxx),会导致无法关闭该文件
最好用如下方式打开文件,并且指定打开文件的格式:
with open(‘C:/Users/fengx//Desktop/sharing/test.txt‘, ‘w‘) as f: f.write(‘Hello, world!‘)
python在写入完文件后,会自动关闭该文件
以上是关于Python3 文件的主要内容,如果未能解决你的问题,请参考以下文章