fork(1) download
  1. def browser(x):
  2. return x
  3.  
  4. def define(*urls):
  5. return list(map(browser, urls))
  6.  
  7.  
  8. print define('1', '2', 3, [4,6,7])
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
['1', '2', 3, [4, 6, 7]]