我想写一个脚本(generate_script.py)生成另一个python脚本(filegenerated.py)
到目前为止,我已经创建了 generate_script.py:
import os
filepath = os.getcwd()
def MakeFile(file_name):
temp_path = filepath + file_name
file = open(file_name, 'w')
file.write('def print_success():')
file.write(' print "sucesss"')
file.close()
print 'Execution completed.'
文件 (filegenerated.py) 现在看起来像这样:
def print_success(): 打印“成功”
现在我不想手动插入所有换行符(也是由于操作系统的困难)......有没有模板系统我可以使用将 python 代码写入 python 文件?有人有例子吗?
非常感谢!