2

我正在使用/学习 Python 来完成 CGI 作业。基本上我们必须呈现一些表单,然后根据用户输入,呈现不同的表单等。

到目前为止,这是我的脚本代码:

import cgi
import cgitb
cgitb.enable()  # for troubleshooting
print ("Content-type: text/html\n\n")
form1 = open("html/assg5form1.html")
form2 = open("html/assg5form2.html")
form3 = open("html/assg5form3.html")
form4 = open("html/assg5form4.html")
form5 = open("html/assg5form5.html")
formstring = form1.read()
print formstring

我遇到的问题是在呈现第一个表单之后,我不知道如何处理用户提供的输入。我通常会在表单上附加一个动作并触发另一个脚本,但我们需要在一个文件中完成所有脚本。如何清除我显示的表格并显示另一个?

4

0 回答 0