Untitled

 avatar
unknown
plain_text
a year ago
278 B
8
Indexable
# Valores aleatorio

import random

moeda = ['cara'],['coroa']
print (random.choice(moeda))

sorteio_nomes = ['eduardo'],['jacir'],['luci'],['gustavo'] ,['joci']
print (random.choice(sorteio_nomes))

numero_aleatorio = random.randint(10, 100)
print (numero_aleatorio)
Editor is loading...
Leave a Comment