組單列我有一個SQLite數據庫,像這樣與列標題和數據:的Python:由不同的價值
expiration, title
2015-08-15, example title
2015-08-15, another sample title
2015-08-15, another one
2015-08-16, lorem ipsum
2015-08-16, example
有沒有辦法在到期日,因此會導致類似組:
Expiring 2015-08-15
example title
another sample title
another one
Expiring 2015-08-16
lorem ipsum
example
目前這裏是我有:
cur.execute("SELECT DISTINCT * FROM expiration WHERE exp BETWEEN date('now','-1 days') AND date('now','+6 days') ORDER BY exp")
sql.commit()
row = cur.fetchall()
for res in row:
msg += res[1] + "\n"
print msg
但按日期,它只是LIS不組TS所有的冠軍
我得到'( '錯誤:' 類型錯誤( 「'itertools._grouper'對象沒有屬性'__getitem __'」,))' – Bijan
對不起,我沒有測試。我認爲我的編輯應該現在就修復它。 – fivetentaylor
同樣的事情。我評論了循環中的所有內容,但它仍然有相同的錯誤。 – Bijan