我在 python 中有一个 cgi 脚本,它以表单形式进行搜索操作。表单具有名字、姓氏、年龄和性别。
现在,如果用户输入年龄并单击男性,它应该在输入的字段中显示男性候选人而不是具有指定年龄的女性候选人。
我应该写什么条件
假设有像这样的数据
john duck 25 male
sashi tharoor 34 male
jacque kalis 25 male
amanda seyfried 25 female
如果用户输入年龄为“25”并在表单中选择“男性”,它应该只显示雅克和约翰的详细信息
if Fname.lower() == temp[0]:
found = True
if Lname.lower() == temp[1]:
found = True
#if Age and Age == temp[2]:
#found = True
#if Gender and Gender == temp[3] :
#found = True
if Age == temp[2] and Gender == temp[3]:
found = True
如果我这样写,而不是在表单上单击性别按钮。它什么也不会显示