新的打开文件模式“x”在python 3中做什么?

新的打开文件模式“x”在python 3中做什么?,第1张

而"x"表示以独创模式打开文件,如果文件存在,则引发FileExistsError。

使用此模式,您的代码将简单地编写为

try:
    with open("fname", "x") as fout:
        #Work with your open file
except FileExistsError:
    # Your error handling goes here

以前的代码可能是

try:
    with open("fname", "x") as fout:
        #Work with your open file
except FileExistsError:
    # Your error handling goes here

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/715825.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存