将test_str写入txt文件

test_file = os.getcwd() + “/test.txt”
output = open(test_file, ‘w’)
output.write(test_str)
output.close()

你可能感兴趣的:(python学习,写文件,python)