Advertisement
Rnery

Sample Game

May 11th, 2021 (edited)
283
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 1 0
  1. from random import sample
  2. from time import sleep
  3.  
  4. for i in range(6):
  5.     sequencia = sample(range(60),7)
  6.     sequencia.sort()
  7.     print('Jogos: ', sequencia)
  8.     sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement