fork download
  1. def f(**kwargs):
  2. kwargs['a'] = 1
  3.  
  4. kwargs = {}
  5. f(**kwargs)
  6. print(kwargs)
  7.  
Success #stdin #stdout 0.03s 9440KB
stdin
Standard input is empty
stdout
{}