Quise reducir las líneas de código en "06. Tipo Booleano" y no estoy seguro de si incurrí en alguna mala práctica al hacerlo. Me encantaría recibir feedback al respecto:
validations = []
ages = [10, 50, 5, 18]
def can_drive_validation(ages):
for age in ages:
validations.append(age >= 18)
for valid in validations:
if valid:
print("Can drive")
else:
print("Can't drive")
can_drive_validation(ages)
print(validations)