how to get variable from other module in 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: how to request a variable from imported file python
from file1 import *
#now use x1, x2..