在python中获取MySQL时间戳

时间:2019-02-06 18:56:15

标签: python mysql

我的python代码在pi上运行。我需要从服务器上获取时间戳。 这是我的代码

cursor = cn.cursor()
cursor.execute('SELECT current_timestamp()')
timestamp = cursor.fetchone()
testvar = datetime.datetime.strptime(timestamp, '%Y-%m-%d %H:%M:%S')

我收到TypeError:必须是字符串,而不是元组

0 个答案:

没有答案