import a list from a file python code example
Example 1: how to read from a file into a list in python
f = open(filename, "r")
listItems = f.read().splitlines()
Example 2: python import list from py file
# In first .py file
mylist = ['this', 'that', 'theother']
# In second file
from variables import mylist