I hope you could answer my question. I am new to python so I ask your help. I want to open a file that contains the following lines. I would like to read each line and store every charaster of it as a string to a list.
A B 2
A E 2
A W 1
B D 5
B W 4
B C 2
B F 3
C F 7
C V 9
D E 1
D J 7
E K 3
F L 2
F M 7
F R 3
F Y 1
G K 8
G J 5
I want to store information about each line like this: [A B 2],[A E 2] will be ['A','B','2'],['A','E','2']