PHP
·
发表于 5年以前
·
阅读量:8280
def saveToFile(content, filePath):
output = open(filePath, 'w')
output.write(content)
output.close()