次のように計算された日数で割る必要がある float 値があります。
import timedelta
import datetime
days_cur_cycle=abs(start_date.date()-today_date.date())
//start_date and today_date are datetime objects
x=3.09
y=x/days_cur_cycle`
ここで、次のエラーが表示されます
**TypeError: unsupported operand type(s) for /: 'float' and 'datetime.timedelta'**
誰か計算を手伝ってください