ユーザーからファイル名を取得し、それを使用してファイルを実行しようとしてexecfile()
います。以下は私のコードです:
print "Please enter the name of the file"
filename = raw_input().split(".")[0]
module = __import__(filename)
execfile(module) <-- this is where I want to execute the file
私はそれが次のように機能することを理解しexecfile()
ています:
execfile("example.py")
ファイル名が変数として渡されるときにこれを行う方法がわかりません。私はPython2.7を使用しています。