我在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
如果我這樣寫,比在表單上單擊性按鈕時。它會顯示什麼
這個問題是幾乎與你的其他[問題]一樣(http://stackoverflow.com/questions/19699621/entering-two-field-data-and-making-a-search-if-satisfies-in-cgi-script-of- python)所以我在這裏添加此鏈接以供參考 – Mailerdaimon