fun_annotations.py 75 B

1234
  1. def foo(x: int, y: list) -> dict:
  2. return {x: y}
  3. print(foo(1, [2, 3]))