Kod:
liste = [[1,2],["a","b"]]
for i in liste:
print(i[1])
for döngüsü ile nasıl sadece 1. listeyi göstelebilirim
Son düzenleme:
Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
liste = [[1,2],["a","b"]]
for i in liste:
print(i[1])
Başka bir yolu yok mu ?