Código de verificación
edad = 18
def verificar_si_puede_conducir(edad):
if edad >=18:
print ('Usted tiene edad suficiente para conducir')
else:
print('Usted no tiene edad suficiente para conducir')
verificar_si_puede_conducir(edad)