“Wydrukuj wszystkie elementy na liście Python” Kod odpowiedzi

Jak wydrukować wszystkie elementy na liście Python

fruits = ["Apple","Orange","Watermelon","cherry"]
for fruit in fruits:
    print(fruit)
Programmer of empires

Wydrukuj elementy łańcuchowe na liście Python

# list having all elements are strings
strings = ['string1', 'string2', 'string3', 'string4']
for string in strings:
    print(string)
Bst Barracuda

Wydrukuj wszystkie elementy na liście Python

# using for loop
scores = [11, 12, 13, 14, 15, 16]
for score in scores:
    print(score)
Bst Barracuda

Wydrukuj wszystkie obiekty na liście Python

for p in myList: 
  print p
Successful Stoat

Odpowiedzi podobne do “Wydrukuj wszystkie elementy na liście Python”

Pytania podobne do “Wydrukuj wszystkie elementy na liście Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu