python text file to list code example
Example 1: convert python list to text file
places = ['Berlin', 'Cape Town', 'Sydney', 'Moscow']
with open('listfile.txt', 'w') as filehandle:
for listitem in places:
filehandle.write('%s\n' % listitem)
Example 2: python read text file into a list
text_file = open("filename.dat", "r")
lines = text_file.readlines()
print lines
print len(lines)
text_file.close()
Example 3: python read text file to list
with open(filename) as f:
content = f.readlines()
content = [x.strip() for x in content]
Example 4: how to make python turn a list into a text file grapper
crimefile = open(fileName, 'r')
yourResult = [line.split(',') for line in crimefile.readlines()]