“Iteracja Pythona” Kod odpowiedzi

pętla przez obiekt Python

for attr, value in k.__dict__.items():
        print(attr, value)
Worried Wildebeest

Iteracyjne z pętlami w Python

names = ["Preet", "Ranjeet", "Adil"]
for name in names:
    print(name)
Outrageous Ostrich

Iteracja Pythona

# a 'while' loop runs until the condition is broken
a = "apple"
while a == "apple":
  a = "banana" # breaks loop as 'a' no longer equals 'apple'
  
# a 'for' loop runs for the given number of iterations...
for i in range(10):
  print(i) # will print 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

# ... or through a sequence
array = [3, 6, 8, 2, 1]
for number in array:
  print(number) # will print 3, 6, 8, 2, 1
panda

Iteracja Pythona

for n in range(3):   
print(n)
Rich Raccoon

Jak używać iteracji w Pythonie


n = 5
while n > 0:
    print n
    n = n-1
print 'Blastoff!'
Worrisome Willet

Odpowiedzi podobne do “Iteracja Pythona”

Pytania podobne do “Iteracja Pythona”

Więcej pokrewnych odpowiedzi na “Iteracja Pythona” w Python

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

Przeglądaj inne języki kodu