fork download
  1. x = (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22);
  2. n = 10
  3.  
  4. print (len(x) % n,) + (n,) * (len(x)/n)
Success #stdin #stdout 0.01s 9024KB
stdin
Standard input is empty
stdout
(2, 10, 10)