Posts by João Paulo • 1 point
1 post
-
0
votes1
answer80
viewsQ: How to draw random numbers repeatedly so that the same number is not drawn?
from random import randint # Dados lista_tentativas = list() quantidade_tentativas = 0 # Entrada de dados x = int(input('Informe um numero entre 0 e 10:')) # Tentativas while True: y = randint(0,10)…
pythonasked João Paulo 1