I am trying to take in a filename from a user and then use execfile() to execute the file , below is my code
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
I understand the execfile works like
execfile("example.py")
I am unsure on how to do this when the filename is passed as an variable . I am using python 2.7
execfile()function? – Martijn Pieters Dec 7 '12 at 20:51