use a variable from another file python code example
Example 1: how to reference variable in another file python
from vardata import verb_list, other_list
import random
print random.choice(verb_list)
Example 2: python use variable in another file
from OtherFile import Variable
#this assumes the 2 files are in the same folder, if not see here:
'''
https://stackoverflow.com/questions/4383571/importing-files-from-different-folder
'''