从生成的数组列表python中查找丢失的时间

Posted

技术标签:

【中文标题】从生成的数组列表python中查找丢失的时间【英文标题】:Find missing times from generated array list python 【发布时间】:2021-03-28 16:09:41 【问题描述】:

我试图在通过从 mysql 数据库收集数据生成的列表中查找丢失的时间。这意味着每次函数运行时 test_list 的值总是不同的。

我的代码:

def get_time_slotes():
    test_list = sorted([u'08:00', u'12:00', u'13:00', u'09:00', u'10:00', u'17:00'])

    res = list(set(range(max(test_list) + 1)) - set(test_list)) 
    print("The list of missing elements : " + str(res))


if __name__ == "__main__":
    get_time_slotes()

但我收到此错误:

Traceback (most recent call last):
  File "/Users/liesching/Documents/test.py", line 41, in <module>
    get_time_slotes()
  File "/Users/liesching/Documents/test.py", line 36, in get_time_slotes
    res = list(set(range(max(test_list) + 1)) - set(test_list)) 
TypeError: coercing to Unicode: need string or buffer, int found

如果这有什么不同的话,我正在使用 Python 2.7。这是一个约束,因为我是在现有应用程序之上构建的

【问题讨论】:

你为什么使用python 2.7?这是一个约束吗? 是的,不幸的是...在 2.7 中构建的现有系统之上构建它 【参考方案1】:

我使用 datetime 来解决您的问题。首先,我将每个元素编码为 utf-8。

代码不干净,但是可以用!!

from datetime import datetime, timedelta, time

def get_time_slotes():

    list_of_times = [u'08:00', u'12:00', u'13:00', u'09:00', u'10:00', u'17:00']
    test_list = sorted(datetime.strptime(x.encode('utf-8'),'%H:%M').time() for x in list_of_times)
    
    res = [x.strftime("%H:%M") for x in sorted(set(time(x,0,0,0) for x in range(max(test_list).hour)) - set(test_list))]

    print("The list of missing elements : " + str(res))

输出:

The list of missing elements : ['00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '11:00', '14:00', '15:00', '16:00']

【讨论】:

【参考方案2】:

问题在于max(test_list) 返回u'17:00',因此您需要将其转换为 17,因为 range 需要一个 int。然后您还需要对set(test_list) 中的每个项目执行此操作,然后将数字转换回时间。示例:

def get_hour(time):
  """ u'08:00' -> 8 """
  return int(time.split(":")[0])

def get_time(hour):
  """ 8 -> u'08:00' """
  return (u'%s:00' % hour).zfill(5)
   
def get_time_slotes():
    test_list = sorted([u'08:00', u'12:00', u'13:00', u'09:00', u'10:00', u'17:00'])

    res = map(get_time, list(set(range(get_hour(max(test_list)) + 1)) - set(map(get_hour, test_list))))
    print("The list of missing elements : " + str(res))


if __name__ == "__main__":
    get_time_slotes()

【讨论】:

【参考方案3】:

您的问题是在这里将 unicode 连接到 int:

u'17:00' + 1

也许如果你解析时间,这将是一个更容易的任务,比如:

from datetime import datetime

def get_time_slotes():
    test_list = [u'08:00', u'12:00', u'13:00', u'09:00', u'10:00', u'17:00']
    test_list = [datetime.strptime(t, '%H:%M').hour for t in test_list]

    res = set(range(max(test_list) + 1)) - set(test_list)
    print("The list of missing elements : " + str(res))

get_time_slotes()

输出:

The list of missing elements : 0, 1, 2, 3, 4, 5, 6, 7, 11, 14, 15, 16

【讨论】:

以上是关于从生成的数组列表python中查找丢失的时间的主要内容,如果未能解决你的问题,请参考以下文章

使用命令行查找丢失的 URL 路由

Python - 如何在遍历字典列表时处理丢失的键? [复制]

使用有限的内存查找丢失的号码

函数之间的数组指针丢失值(用 swig 编译以在 python3 中使用)

从一个屏幕移动到另一个屏幕时如何不丢失列表中的数据?

numpy.i 丢失。推荐的安装方式是啥?