ways of accessing variables from different files 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)