Computer >> Máy Tính >  >> Lập trình >> Python

Làm cách nào để gửi kết quả của tập lệnh Python CGI tới trình duyệt?


# Get data from fields from HTML page
first_name = form.getvalue('first_name')
last_name  = form.getvalue('last_name')
send data to Browser
print("Content-type:text/html")
print
print("")
print("")
print("Hello - Second CGI Program")
print("")
print("")
print("
Hello %s %s
" % (first_name, last_name))
print("")
print("")