fork download
  1. def f(a):
  2. s = sum(a)
  3. return list(zip(
  4. a,
  5. map(lambda x: f'{round(x / s * 100, 2)}%', a)
  6. ))
  7.  
  8. print(f([30, 20, 15, 15, 2.5, 10, 10, 20, 10]))
Success #stdin #stdout 0.1s 14064KB
stdin
Standard input is empty
stdout
[(30, '22.64%'), (20, '15.09%'), (15, '11.32%'), (15, '11.32%'), (2.5, '1.89%'), (10, '7.55%'), (10, '7.55%'), (20, '15.09%'), (10, '7.55%')]