10 2019 档案

摘要:nan代表Not A Number(不是一个数),它并不等于0。 情况一: 0 * float('inf') 结果为:nan float('inf') / float('inf') 结果为:nan float('inf') - float('inf') 结果为:nan float('-inf') - 阅读全文
posted @ 2019-10-30 14:42 JQS 阅读(52708) 评论(0) 推荐(1)
摘要:import zipfile import os class FileInfo(): #处理VOT2019数据集,将其中的压缩包解压到相应目录 def __init__(self, file_dir): self.__file_dir = file_dir @property def file_di 阅读全文
posted @ 2019-10-10 10:25 JQS 阅读(975) 评论(0) 推荐(0)