#! /usr/bin/python3 import cgi import cgitb cgitb.enable() html = ''' Your personal nombre is "" ''' print('Content-type: text/html\n') def main(): form=cgi.FieldStorage() t = html.replace('',form.getvalue('nombre')) print(t) main()