def f(a): s = sum(a) return list(zip( a, map(lambda x: f'{round(x / s * 100, 2)}%', a) )) print(f([30, 20, 15, 15, 2.5, 10, 10, 20, 10]))
Standard input is empty
[(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%')]