如果您正在使用 python 写入文件,有没有办法使文本的某些部分变为粗体、斜体或下划线?
我试过了:
test = '/location/tester.rtf'
out_file = open(test,'w')
out_file.write('is this {\bold}?')
out_file.close() #thanks to the comment below
是否可以通过 python 编写粗体、斜体或带下划线的文本?我觉得 .rtf 是最基本的格式化文本,但如果我错了,请纠正我