Skip to content

Instantly share code, notes, and snippets.

View SebastianFGA's full-sized avatar
🎯
Focusing

Sebastian GARCIA SebastianFGA

🎯
Focusing
View GitHub Profile
class Empresa:
def __init__(self, nombre: str, nit: str, ubicacion: str):
self.nombre = nombre
self.nit = nit
self.ubicacion = ubicacion
self.empleados = []
def agregar_empleado(self, empleado):
self.empleados.append(empleado)