Cordial saludo comunidad :)
edades= [20,23,24,61,63,17]
def verificar_si_puede_conducir(edades):
for edad in edades:
if edad >=18:
print("Usted tiene edad suficiente para conducir")
else:
print("Usted NO tiene edad suficiente para conducir")
verificar_si_puede_conducir(edades)