最佳答案
我正在使用Python打开一个文本文档:
text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: " 'TotalAmount')
text_file.close()
我想将字符串变量TotalAmount
的值替换到文本文档中。有人能告诉我怎么做吗?