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