Python rozsah pro smyčku

Příklady kódu

7
0

pro v rozsahu smyčky python

#there are two possibilities for a for loop
#first one is with a range()
#range() just generates lists after the following pattern

print(range(4))
>>> [0,1,2,3]
print(range(1,4))
>>> [1,2,3]
print(range(2,10,2))
>>> [2,4,6,8]

#and what the for does then is that it lets a variable (in my example x) cycle trough the list given after in

for x in range(2,10,2):
  print(x)
>>> 2
>>> 4
>>> 6
>>> 8

#so the code in the loop gets executed for every value in the given list after in
#you can also use for ... in for custom lists
#example 1:

list1 = [1,2,50,2]

for x in list1:
  print(x)

>>> 1
>>> 2
>>> 50
>>> 2

#example 2

list2 = ["bananas", "apples", "pears"]

for x in list2:
  print(x)

>>> "bananas"
>>> "apples"
>>> "pears"
6
0

python pro smyčku

words=['zero','one','two']
for operator, word in enumerate(words):
	print(word, operator)
1
0

rozsah V zatímco loop python

i = 1

while i in range(0,10):
    print("Hello world", i)
    i = i + 1
# OUTPUT
Hello world 1
Hello world 2
Hello world 3
Hello world 4
Hello world 5
Hello world 6
Hello world 7
Hello world 8
Hello world 9

print(i)
10
-1
0

pro i v rozsahu python

for elt in Liste:
  print(elt)

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................