fork(3) download
  1. from random import randint
  2.  
  3. tupla = tuple(randint(i + 1, 9) for i in range(randint(1, 5)))
  4. print(tupla)
  5.  
  6. #https://pt.stackoverflow.com/q/389923/101
Success #stdin #stdout 0.02s 36944KB
stdin
Standard input is empty
stdout
(8, 2, 5, 4, 8)