语法错误CGI脚本

时间:2013-07-28 08:03:39

标签: python

name = form.getvalue('name')

age = form.getvalue('age') + 1
next_age1 = int(form["age"].value

print "Content-type: text/html"
print
print "<html><head>"
print "<p> Hello, %s</p>" % (name)
print "<p> Next year, you will be %s years old.</p>" % next_age1

无法理解为什么这不起作用。

有人可以帮帮我吗?

谢谢!

1 个答案:

答案 0 :(得分:4)

您缺少右括号:

 next_age1 = int(form["age"].value
 #          ----^          -------^ nothing here

经验法则:当您收到语法错误时,您无法立即在该行上找到 ,请查看上一行,看看您是否正确平衡了括号和括号。