我得到了一个python脚本,该脚本应该获取我的mysql表的数据(包含一个日期),然后应该打印出今天的日期与mysql表的日期之间的天数。
我已经尝试将两个日期相减,但这是行不通的。因此,我尝试减去今天的日期和我的生日,这很有用。所以我认为问题在于mysql日期。
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#360074FF">
<item android:id="@android:id/mask">
<shape android:shape="rectangle">
<corners android:radius="8dp"/>
</shape>
</item>
答案 0 :(得分:1)
encodeHTML("<div id='a' class\"ciao\">& ®</div>")
fetchall实际上获取一个元组
例如
<div id='a' class"ciao">& ®</div>
您可能希望通过遍历列表并获取元素来获取日期。例如
Date = eventDate.fetchall()
或者您也可以通过说(('abcd',), ('efgh',))
从OP更新后,可以完成此操作!
OP可以使用https://dateutil.readthedocs.io/en/stable/index.html来使用
for d in Date:
#This will contain the date you need
print(d[0])
增加月份!
Date[0][0]
输出将为from dateutil.relativedelta import *