“Python для In in” Ответ

ибо в питоне

# 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 для In in

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

Ответы похожие на “Python для In in”

Вопросы похожие на “Python для In in”

Больше похожих ответов на “Python для In in” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования