Как мне разбить вывод python-cgi на страницы.структура цикла выборки:
При 1:
if x is true:
c.execute("select m from n where id=%s")
gene=c.fetchall()
print "%s", (gene),
else:
print "NA"
if y is true:
c.execute("select p from q where id=%s")
protein=c.fetchall()
print "%s", (protein),
else:
print "NA"
print "\n"
вывод - миллионы строк.Я хочу разбить вывод на страницы .. как 50 строк на странице.Как я могу это сделать?Я ценю вашу помощь.Спасибо.