私は、ファイルからリストのリストを作成していますが、私は私の出力に少し間違って取得しています:pythonでファイルからリストのリストを作成しています。
f=open('file.txt')
line=f.readline()
a=[]
while line:
a.append(line.strip('\n'))
line=f.readline()
f.close()
print (a)
出力:["['verb', 0, 5, 7]", "['noun', 9, 3, 4]"]
所望の出力:[['verb', 0, 5, 7], ['noun', 9, 3, 4]]
https://stackoverflow.com/questions/46156334/python-format-file-to-list/46156575#46156575 – Ajax1234