fork download
  1. # your code goes here
  2. a = [30,20,15,15,2.5,10,10,20,10]
  3.  
  4. def f(k, lst):
  5. s = sum(lst)
  6. return list(map(
  7. lambda x: (x, round(k*x/s, 2)), lst))
  8.  
  9. print(f(2000, a))
Success #stdin #stdout 0.13s 14148KB
stdin
Standard input is empty
stdout
[(30, 452.83), (20, 301.89), (15, 226.42), (15, 226.42), (2.5, 37.74), (10, 150.94), (10, 150.94), (20, 301.89), (10, 150.94)]