i am learning python programming and am stuck with this problem.I looked into the other examples which reads the file input and makes the entire thing as a single list or as a string link to that example but i want each line to be a list(nested lists) how do i do it please help
The text file is a.txt
1234 456 789 10 11 12 13
4456 585 568 2 11 13 15
the output of the code must be like this
[ [1234 456 789 10 11 12 13],[4456 585 568 2 11 13 15] ]