Základní python pro smyčku

Příklady kódu

68
0

python smyčky

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)
3
0

python pro smyčku

# Python for Loops

# There are 2 types of for loops, list and range.

# List:

food = ['chicken', 'banana', 'pie']
for meal in food: # Structure: for <temporary variable name> in <list name>:
  print(meal)
  # Will use the temporary variable 'meal' every time it finds an item in the list, and print it
  # So output is: chicken\nbanana\npie\n
# Range:
for number in range(9): # Will loop 9 times and temporaray variable number will start at 0 and end at 8
  print(number) # Prints variable 'number'

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
..................................................................................................................