執行.py文件中的cgi-bin 以前我有錯誤在蟒蛇安裝的Apache2,this is the link 我想我應該繼續存在,但現在我得到一個新的錯誤,以便張貼作爲一個新的,這是什麼問題 我已經放置在具有文件hello.py代碼 #!/usr/bin/python
print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<h
下面的一個正常工作, >>> a = 1,2
>>> a = u'[1,2]'
>>> print a
[1,2]
>>> type(a)
<type 'unicode'>
>>> n = [e.encode('utf-8') for e in a.strip('[]').split(',')]
>>> n
['1', '2']
>>> type(n)
<type 'list'