如何在HTML上使用Python“ if语句”?

时间:2019-03-16 20:33:24

标签: python html

我发现了可以与Python和HTML一起使用的新功能。 但是我在执行此操作时遇到了一个问题:我想: -添加问题(完成) -添加输入框(完成) -在该框上创建“ if语句”(撤消)// 我怎么做?您是否建议我使用任何更好的主意? // index.html:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Test</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" type="text/css" media="screen" href="main.css">
    <link rel="stylesheet" href="./css/style.css">
    <form action="./scripts/py_script" method="get" enctype="multipart/form-data"></form>
</head>
<body>
    <div class=title>
        <h1>k</h1>
    </div>

    <div class=questions>
        <p>This is a test message: 1+2=?</p>
    </div>

    <div class=answers>
        Text input: <input maxlength="60" size="60" value="Answer..." name="textinput"> 
        <input value="Submit" type="submit">
    </div>

</body>
</html>

py_script.py:

import py_script

form = py_script.FieldStorage()

input_text = form.getfirst("textinput")

if textinput == '3':
    print("True")

print "Content-type:text/html\r\n\r\n"
print "<html>"
print "<body>"
print "<p>%s</p>" % input_text
print "</body>"
print "</html>"

另一个问题:python脚本末尾的那些“打印”命令是否必要?他们做什么?

0 个答案:

没有答案