Given that your data file is a python script then you might wish to import this instead by doing:
from data_file import numbers
print numbers
If the python file you are attempting to import is in a different directory it takes a bit more effort, for that you have to do the following:
Change your code to tell python where to look for the module:
import sys
sys.path.append( "path to include directory")
from data_file import numbers
print numbers
Create an empty file called __init__.py
in the same directory as the file you are importing. This tells python that you want to be able to use the folder with import. You can read more about why you need __init__.py
over at the documentation here.
Note that there are a few different was in which you might want to tell python how to import from a different directory, see this question for more info.
You might also want to see this PEP about relative imports.
No need for any nasty eval()
that way that could potentially introduce problems later on.