how to make a text file into a list in python code example
Example: how to make python turn a list into a text file grapper
crimefile = open(fileName, 'r')
yourResult = [line.split(',') for line in crimefile.readlines()]
crimefile = open(fileName, 'r')
yourResult = [line.split(',') for line in crimefile.readlines()]