私はこのコードを持っていますが、次のエラーが発生したため実行できませんでした: "TypeError:'classobj' object is not subscriptable"そしてこれが私のコードです:
import cgi
import customerlib
form=cgi.FieldStorage
history = customerlib.find(form["f_name"].value,form["l_name"].value)
print "Content-type: text/html"
print
print """<html>
<head>
<title>Purchase history</title>
</head>
<body>
<h1>Purchase History</h1>"""
print "<p>you have a purchase history of:"
for i in history: "</p>"
print""" <body>
</html>"""
このファイルの横にcustomerlibファイルがあります。それを修正する方法はありますか?