HTML (8.html) ⇒ Python (Hello.py) ⇒ the Web
#!/usr/bin/python # where Python is located at import cgi # importing the CGI module form = cgi.FieldStorage( ) # preparing to read web inputs act = form["act" ].value # which button is clicked on message = form["message"].value # the input message
# A Hello-World Webpage Using Python print Command print |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Review: Client-side Programming Languages |
Which is a client-side programming language?
JavaScript Python SQL (Structured Query Language) |
Result: |