下面的代碼是給我下面的錯誤: TypeError: unsupported operand type(s) for +: 'int' and 'Row'
類型錯誤:不支持的操作類型蟒蛇的web2py
import datetime
#product withholding in days
days = (0)
pdays = db(db.product.withholding_period>0).select().first()
wdate = db(db.stock_task.completed_date>0).select().first()
fdate = wdate + datetime.timedelta(days+pdays)
誰能解釋是什麼原因導致這個錯誤,以及如何解決?
你的問題是什麼? – br3w5
是什麼導致它 – user3502263