我不知道如何在 Bottle 框架中制作 raw_input()。
for idx, d in enumerate(student):
for ids, s in enumerate(student):
if d['Name'] == s['Name'] and idx != ids:
print d,idx
l=raw_input('input number to delete')
student.pop(int(l))
for m in student:
for k in olympiad:
if m['Name']==k['Name']:
this.append(k)
如果我返回一个模板而不是 raw_input() 我将丢失所有其他操作。而且我不想在控制台中编写此操作。