79284775

Date: 2024-12-16 13:07:56
Score: 0.5
Natty:
Report link

Using list generator:

[ (fn+' '+ln, age) for fn, ln, age in tuples_list ]

Using map() and a lambda func:

list(map(lambda x: (x[0]+' '+x[1], x[2]), tuples_list))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: vaizki