-
Notifications
You must be signed in to change notification settings - Fork 0
/
clases.py
40 lines (31 loc) · 888 Bytes
/
clases.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class Persona:
# Atributos
# Métodos
def __init__(self, nombre, edad): # Método constructor
self.nombre = nombre
self.edad = edad
def __str__(self):
texto = "Persona: ("
texto = texto + self.nombre + ":"
texto = texto + str(self.edad) + ") "
return texto
def verLista(datos):
i = 1
texto = "LISTA: \n"
for personaX in datos:
linea = "[{}]: {}\n".format(i, personaX)
i = i + 1
texto = texto + linea
texto = texto + "......................Fin de la x_list.\n"
return texto
class Lista:
def __init__(self):
self.lista = []
def adicionar(self, obj):
self.lista.append(obj)
def __str__(self):
return verLista(self.lista)
def __len__(self):
return len(self.lista)
def cambiarLista(self, lista):
self.lista = lista