I have the following problem:
-
I have a 2D vector and I want to display only the first vector ([250, 27.65863337187866, 93.38094023943002, 27.65863337187866]).
-
I've created a code, but it's displaying everything.
-
Below the code:
lista_1 = [[250, 27.65863337187866, 93.38094023943002, 27.65863337187866], [0, 392, 327, 30, 348, 12, 64, 324]]
for i in lista_1:
print (i)
Where am I going wrong?
Thanks for the help.