Posts by nebrus • 1 point
1 post
-
-2
votes2
answers832
viewsQ: Inheritance and polymorphism in python
from random import randint class Nomes(object): def __init__(self, qtd_letras): self.letras = qtd_letras self.alfabeto = (('A', 'E', 'I', 'O', 'U'), ('A','B', 'C', 'D','E','F','G','H','I','J','K',…