別のPythonスクリプト(filegenerated.py)を生成するスクリプト(generate_script.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ファイルに書き込むために使用できるテンプレートシステムはありますか?誰かが例を持っていますか?
どうもありがとう!