TGViewer
Python | Тесты для программистов Python | Тесты для программистов @pythontest_it · 15K subscribers
Post #9292 275
def f(x, y, z):
return x + y + z

d1 = {'x': 1, 'y': 2}
d2 = {'y': 3, 'z': 4}

try:
print(f(**d1, **d2))
except TypeError:
print("TypeError")


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

#Python
More from @pythontest_it
  1. Sep 21, 2026Post #9316
  2. Sep 21, 2026class A: def __init__(self): self.__x = 1 def get_x(self): return self.__x class B(A): def…
  3. Sep 21, 2026Post #9314
  4. Sep 21, 2026print(1 in [1, 2] == True) 💕 Наш уютный чатик #Python
  5. Sep 20, 2026Post #9312
  6. Sep 20, 2026def modify(n): n = n + 5 n *= 2 return n x = 10 result = modify(x) + x print(result) 💕 На…
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 →