标签: python-3.x
我想打开包含特殊字符的文件名,但是python给出操作系统错误。
我尝试用unicode打开文件,但也没有用
unicode
title = "djhf???jdf.html" title1 = u'{}'.format(title) with open(title, 'w') as f: f.write("Heyya")
应打开名称中带有特殊字符的文件。