fork download
  1. TestList = [1,2,3,4,5]
  2. TestList = list(map(lambda num : num + 100, TestList))
  3.  
  4. print(TestList)
Success #stdin #stdout 0.01s 7336KB
stdin
Standard input is empty
stdout
[101, 102, 103, 104, 105]