fork download
  1. # your code goes here
  2. li = [1, 2, 3]
  3. l = lambda *x: sum(x)
  4. print(l(*li))
  5.  
Success #stdin #stdout 0.02s 9284KB
stdin
Standard input is empty
stdout
6