1. python 如何寫腳本
以Python2.7操作為例:
1、首先需要打開電腦桌面,按開始的快捷鍵,點擊Python2.7如圖所示的選項進入。
2. 如何用python寫一段浪漫的代碼
簡單的,可以使用python 的CGI模塊,需要你的伺服器開啟CGI支持。
網頁內容如下:
1
2
3
4
5
6
7
8
9
10
11
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>python cgi</title>
</head><body>
<p style="font-size:24pt;color:red">輸入登錄密碼:</p>
<form name="zhaji" action="login.py" method="post">
<p>密碼:<input type="password" name="ma" size="9"></p>
<input type="button" name="shuru" value="登錄" onclick="zhaji.submit()">
</form>
</body></html>
login.py文件內容如下:
1
2
3
4
5
6
7
8
9
#!/usr/bin/python
#coding:utf-8
import cgi
form = cgi.FieldStorage()
ma = ""
if 'ma' in form:
ma = form["ma"].value
print '''Content-Type: text/html\n\n'''
print '''<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>python cgi</title></head><body><p>你輸入的密碼是:%s</p> </body></html>''' % ma