fork(1) download
  1. def f(a):
  2. s = sum(a)
  3. return list(zip(
  4. a,
  5. map(lambda x: round(x / s * 14000, 2), a)
  6. ))
  7.  
  8. print(f([30, 20, 15, 15, 2.5, 10, 10, 20]))
Success #stdin #stdout 0.14s 14144KB
stdin
Standard input is empty
stdout
[(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)]