I want to print the first 10 lines of a list
I am new to python. This actually my first python project. I don't know how to go about it.
The list looks like this. How do we call such a list in python?
numbers = [[0.4437678, 0.4318693, 0.3873539, 0.03706345]]
[[0.4437677, 0.4318692, 0.3873538, 0.03706344]]
[[0.2260452, 0.2189278, 0.1944221, 0.01853172]]
[[0.2260452, 0.2189278, 0.1944227, 0.01853173]]
[[0.2260452, 0.2189278, 0.1944227, 0.01853173]]
...
...
...
[[0.2260452, 0.2189278, 0.1944221, 0.01853172]]
up to about 500 lines
I want to read and print the first 10 lines of this list