fork(1) download
  1. x="John Marry Joseph"
  2. print([(y+"@company.com") for y in x.split()])
Success #stdin #stdout 0.04s 9984KB
stdin
Standard input is empty
stdout
['John@company.com', 'Marry@company.com', 'Joseph@company.com']