“Python pour in pour en” Réponses codées

pour Python

# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
  if x == "apple":
    continue
  if x == "banana":
    break
  print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
  print(x)
Plain Parrot

Python pour in pour en

adj = ["red", "big"]
fruits = ["apple", "banana"]

for x in adj:
  for y in fruits:
    print(x, y)
    #output: red apple, red banana, big apple, big banana
DreamWorld

Réponses similaires à “Python pour in pour en”

Questions similaires à “Python pour in pour en”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code