def f(a): s = sum(a) return list(zip( a, map(lambda x: round(x / s * 14000, 2), a) )) print(f([30, 20, 15, 15, 2.5, 10, 10, 20]))
Standard input is empty
[(30, 3428.57), (20, 2285.71), (15, 1714.29), (15, 1714.29), (2.5, 285.71), (10, 1142.86), (10, 1142.86), (20, 2285.71)]