TGViewer
Python Tasks & ML | Задачи по питону и машинному обучению Python Tasks & ML | Задачи по питону и машинному обучению @python_tasks · 8.51K subscribers
Post #2975 693
Что выведет код?

with open("data.txt", "w", encoding="utf-8") as f:
f.write("apple\n")
f.write("banana\n")
f.write("cherry\n")

def read_lines():
for line in open("data.txt"):
yield line.strip()

lines = read_lines()
print(next(lines))
print(next(lines))
print(next(lines))
More from @python_tasks
  1. May 25, 2026Post #3221
  2. May 25, 2026Что выведет код? def f(): import sys locs = sys._getframe(1).f_locals setattr(locs['self']…
  3. May 22, 2026Post #3219
  4. May 22, 2026Что выведет код? def f(x): if x < 3: return x y = filter(f, (0, 1, 2, 3, 4)) print(list(y)…
  5. May 21, 2026Post #3217
  6. May 21, 2026Что выведет код? def func(x): if x >= 3: return x y = filter(func, (1, 2, 3, 4)) print(lis…
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →