TGViewer
Python | Тесты для программистов Python | Тесты для программистов @pythontest_it · 15K subscribers
Post #9295 284
lst = [x for x in range(10) if x % 2 == 0 if x % 3 == 0]
print(lst)


💕 Наш уютный чатик

#Python
  • ❤ 1
More from @pythontest_it
  1. Sep 22, 2026Post #9320
  2. Sep 22, 2026class A: x = 1 class B(A): pass class C(A): pass B.x = 2 A.x = 3 print(C.x) 💕 Наш уютный…
  3. Sep 22, 2026Post #9318
  4. Sep 22, 2026tpl = ([],) tpl[0].extend([1, 2]) print(tpl) 💕 Наш уютный чатик #Python
  5. Sep 21, 2026Post #9316
  6. Sep 21, 2026class A: def __init__(self): self.__x = 1 def get_x(self): return self.__x class B(A): def…
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 →