2D Liste

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

2D LISTE

- liste ciji su elementi liste > Liste lista


a=[[4.7,'Ivo'],[5.6,'Ana'],[4.9,'Pero']]
print(a)
print(a[0][1])
print(a[1][1])
print(a[2][1])
b=sorted(a)
b=sorted(a, reverse=True)
print(b)

You might also like