- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在努力从数据库中获取数据。我想搜索 program_start_date
的第二天格式,例如:program_start_date
格式显示 20171107200000
所以我想搜索第二天格式为 20171108200000
。
这是代码:
channels_list = self.channel[self.channels_Index:min(len(self.channel), self.channels_Index + 7)]
if len(self.programs_button) > 0:
#CONNECT TO THE DATABASE
conn = database.connect(self.profilePath + 'source.db')
cur = conn.cursor()
for channels in channels_list:
cur.execute('SELECT channel, title, start_date, stop_date FROM programs where channel=? LIMIT 1', [channels])
programs = cur.fetchall()
for ind, row in enumerate(programs):
program_start_date = str(row[2])
start_time = time.strptime(program_start_date, '%Y%m%d%H%M%S')
start_time = datetime.datetime.fromtimestamp(time.mktime(start_time))
print program_start_date
这是program_start_date
数据:
20171107200000
20171107210000
20171107220000
20171107223000
20171107224500
20171107232500
20171108000500
20171108001000
20171108060000
20171108091500
20171108100000
20171108110000
20171108114500
20171108121500
20171108130000
20171108133000
20171108134500
20171108141500
20171108150000
20171108154500
20171108163000
20171108171500
20171108180000
20171108183000
20171108190000
20171108200000
20171108210000
20171108220000
20171108223000
20171108224500
20171108231500
20171108234500
20171109004500
20171109005000
20171109060000
20171109091500
20171109100000
20171109110000
20171109114500
20171109121500
20171109130000
20171109133000
20171109134500
20171109141500
20171109150000
20171109154500
20171109163000
20171109171500
20171109180000
20171109183000
20171109190000
20171109193000
20171109200000
20171109210000
20171109220000
20171109223000
20171109224500
20171109234500
20171110004500
20171110005000
20171110060000
20171110091500
20171110100000
20171110110000
20171110114500
20171110121500
20171110130000
20171110133000
20171110134500
20171110141500
20171110150000
20171110154500
20171110163000
20171110171500
20171110180000
20171110183000
20171110190000
20171110193000
20171110200000
20171110203000
20171110210000
20171110213000
这是start_time
数据:
2017-11-07 20:00:00
2017-11-07 21:00:00
2017-11-07 22:00:00
2017-11-07 22:30:00
2017-11-07 22:45:00
2017-11-07 23:25:00
2017-11-08 00:05:00
2017-11-08 00:10:00
2017-11-08 06:00:00
2017-11-08 09:15:00
2017-11-08 10:00:00
2017-11-08 11:00:00
2017-11-08 11:45:00
2017-11-08 12:15:00
2017-11-08 13:00:00
2017-11-08 13:30:00
2017-11-08 13:45:00
2017-11-08 14:15:00
2017-11-08 15:00:00
2017-11-08 15:45:00
2017-11-08 16:30:00
2017-11-08 17:15:00
2017-11-08 18:00:00
2017-11-08 18:30:00
2017-11-08 19:00:00
2017-11-08 20:00:00
2017-11-08 21:00:00
2017-11-08 22:00:00
2017-11-08 22:30:00
2017-11-08 22:45:00
2017-11-08 23:15:00
2017-11-08 23:45:00
2017-11-09 00:45:00
2017-11-09 00:50:00
2017-11-09 06:00:00
2017-11-09 09:15:00
2017-11-09 10:00:00
2017-11-09 11:00:00
2017-11-09 11:45:00
2017-11-09 12:15:00
2017-11-09 13:00:00
2017-11-09 13:30:00
2017-11-09 13:45:00
2017-11-09 14:15:00
2017-11-09 15:00:00
2017-11-09 15:45:00
2017-11-09 16:30:00
2017-11-09 17:15:00
2017-11-09 18:00:00
2017-11-09 18:30:00
2017-11-09 19:00:00
2017-11-09 19:30:00
2017-11-09 20:00:00
2017-11-09 21:00:00
2017-11-09 22:00:00
2017-11-09 22:30:00
2017-11-09 22:45:00
2017-11-09 23:45:00
2017-11-10 00:45:00
2017-11-10 00:50:00
2017-11-10 06:00:00
2017-11-10 09:15:00
2017-11-10 10:00:00
2017-11-10 11:00:00
2017-11-10 11:45:00
2017-11-10 12:15:00
2017-11-10 13:00:00
2017-11-10 13:30:00
2017-11-10 13:45:00
2017-11-10 14:15:00
2017-11-10 15:00:00
2017-11-10 15:45:00
2017-11-10 16:30:00
2017-11-10 17:15:00
2017-11-10 18:00:00
2017-11-10 18:30:00
2017-11-10 19:00:00
2017-11-10 19:30:00
2017-11-10 20:00:00
2017-11-10 20:30:00
2017-11-10 21:00:00
2017-11-10 21:30:00
在数据库中,我有 249 行 program_start_date
,那么如何使用 program_start_date
变量在数据库中搜索第二天的格式?
最佳答案
import datetime as dt, time
TIME_FORMAT = '%Y%m%d%H%M%S'
program_start_date = '20171108150000'
start_time = dt.datetime.fromtimestamp(time.mktime(time.strptime(program_start_date, TIME_FORMAT)))
nextday = start_time + dt.timedelta(days=1)
program_nextday_date = nextday.strftime(TIME_FORMAT)
print program_nextday_date
20171109150000
使其成为一个函数:
def get_next_day(time_string):
to_datetime = dt.datetime.fromtimestamp(time.mktime(time.strptime(time_string, TIME_FORMAT)))
nextday = to_datetime + dt.timedelta(days=1)
return nextday.strftime(TIME_FORMAT)
要查找给定日期的第二天的所有日期,请使用以下命令:
nextday = get_next_day(program_start_date)
nextnextday = get_next_day(nextday)
curr.execute('SELECT * FROM table_name WHERE start_date >= ? and stop_date < ?', [nextday, nextnextday])
关于python - 在数据库中搜索第二天格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47166563/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!