Update Python Ofensivo

This commit is contained in:
2023-12-25 21:16:48 +01:00
parent ab95e6f805
commit 490afce41f
8 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python3
"""
Métodos especiales
"""
class MiLista:
def __init__(self):
self.data = [1, 2, 3, 4, 5]
def __getitem__(self, index):
return self.data[index]
lista = MiLista()
print(lista[2])