take variable from other file in python code example
Example: how to reference variable in another file python
from vardata import verb_list, other_list
import random
print random.choice(verb_list)
from vardata import verb_list, other_list
import random
print random.choice(verb_list)