Lo que quiero lograr es un formulario sencillo, donde cierta persona al introducir cierto nombre como "carro", le diga lo ha escrito bien, o le ha escrito mal.
Código HTML:
 <html> <head> </head> <body> <form action = "envio1" method = "post"> <input type="text" name="nombre" value=""> <input type="submit" name="boton" value="corregir"> </form> </body> <html>
Código HTML:
 
 if envio1="carro"
    print " lo ha escrito bien"
   else:
         print:"lo ha hecho mal"
 
 
 ¿Cómo lograr integrar mi formulario HTML con Python?
 ¿Cómo lograr integrar mi formulario HTML con Python? 


