Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- class bloque (object):
- def __init__ (self, letter):
- label = letter
- bind = letter
- alfabeto = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
- chosen = []
- for i in range(9):
- chosen.append(alfabeto[random.randint(0,len(alfabeto))])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement