how to access a variable from another py file in vs code code example
Example 1: how to access a variable from another py file in vs code
from vardata import verb_list, other_list
import random
print random.choice(verb_list)
Example 2: how to access a variable from another py file in vs code
verb_list = [x, y, z]
other_list = [1, 2, 3]
something_else = False