我正在用 Python 将一些文本写入文件。问题是带有额外单引号的字符串文字被写入文件。我想避免这种情况。
我有一个多语言字符串,我首先使用它进行编码
my_string = str('other language string').encode('utf-8')
file.open('my_file.txt', 'w', newline = '')
file.write(my_string)
它将以下输出保存到文件中
b'other language string'
我希望输出只有
other language string