我有這樣的腳本:AttributeError的: 'datetime.date' 對象有沒有屬性 '日期'
import datetime
# variable cal_start_of_week_date has type <type 'datetime.date'>
# variable period has type <type 'datetime.timedelta'>
cal_prev_monday = (cal_start_of_week_date - period).date()
在執行上面的語句,我得到的錯誤:
AttributeError的:' datetime.date'對象沒有'date'屬性
如何解決這個問題?
只是從最後刪除'.date()'? – 2010-07-07 13:54:25