我想在保存文件时使用'/'作为文件名中的字符。
with open('first_part.whatever', 'w') as f:
f.write('file things')
f.close()
这将按预期保存文件,但
with open('first_part/second_part.whatever', 'w') as f:
f.write('file things')
f.close()
不会。
FileNotFoundError: [Errno 2] No such file or directory: 'first_part/second_part.whatever'
是错误消息,足够清楚。然而,我不知道如何说“我希望整个字符串是文件名;将斜杠视为另一个字符,而不是新目录”。我该怎么做?