1
class linha ():
def __init__ (self, texto):
self.texto = texto
def criador ():
for i in range(5):
a = raw_input ('escreva: ')
global objetoi
objetoi = linha (a)
How do I make the function criador
generates a different object with each interaction in the loop for
?