fork download
  1. def f(**kwargs):
  2. print(kwargs.get("test"))
  3.  
  4. def g(x):
  5. f(**x)
  6.  
  7. g({"test": "Hello!"})
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
Hello!