问题标签 [python-datetime]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
arrays - How to put a datetime value into a numpy array?
I am learning python so please bear with me. I have been trying to get a datetime variable into a numpy array, but have not been able to figure out how. I need to calculate differences between times for each index later on, so I didn't know if I should put the datetime variable into the array, or convert it to another data type. I get the error:
Is my dtype variable constructed correctly? This says nothing about datetime type.
Thanks in advance
EDIT: I should note that I plan on sorting the array by date before proceeding.
p.time is in the following format:
python - 从字符串中获取 tz 偏移量
我有一个当地时间的日期:
另一个值 tz:
如果我:dateutil.parser.parse(date).isoformat()
我会得到:
我想date
用 tz 信息实现 ISO 格式并得到以下结果:
接近的东西:parse(date,tzinfos=??).isoformat()
?如何从字符串中获取 tzinfo timezone_offset
?
python - 将可变时间设置为 SchTasks
这是我到目前为止所做的
我不断收到的错误是:
如果我这样直接使用时间,则任务安排成功:
如果有任何其他方法可以做到这一点,将不胜感激。
提前致谢!
python - 为什么 datetime 的子类减去 timedelta 的结果是 datetime 对象?
我有以下代码:
输出如下:
所以现在我的问题是,为什么子类减去timedelta
导致超类?
此外,是否有一种解决方法,我不必封装datetime
对象并重定向所有方法datetime
?
python - 如何从UTC时间戳获取小时数?
我有一个 UTC 时间戳,我想用 Python 计算从那时到现在的小时数。我怎样才能做到这一点?
谢谢!
python - python中没有datetime模块如何通过easy_install安装?
我可以找到模块https://pypi.python.org/pypi/DateTime
但我不知道通过easy_install 安装的命令。我收到一个no module named datetime
错误,所以我需要安装它。
python - python数据框将周数转换为月
我正在尝试添加一个新列,将周列转换为该周所属的适当月份。如果一周分为 2 个月,则以最大月份作为答案。
所以输出看起来像这样。有任何想法吗?
即使第 201301 周是 dec12 和 jan13 的一部分,第 201305 周也是 jan13 和 feb13 的一部分。顺便说一句,我使用的星期格式是 yyyyww。我想如果我可以计算那个特定周的最后一天,那么这个月是什么。但我怎样才能以最简单的方式做到这一点。@alko
python - Python strftime 给了我意大利语
这在我的 django 模型中发生了一件非常奇怪的事情。
在我的保存函数中,我使用 DatetimeField 并使用基于该日期的字符串填充另一个字段,如下所示:
现在奇怪的是,出于某种疯狂的原因,它在意大利语中出现了!
好吧,我相信它的意大利语?
这只发生在模型保存方法中,而不是我使用 strftime 的其他任何地方。
python - 在python中使用日期获取周数
日期是 datetime.date(2013, 12, 30)
我正在尝试使用
我得到的输出为
为什么我没有得到去年的周数,而是得到了今年的周数?
我在这里做错了什么?
python - 在特定时间范围内选择对 datetime64[ns] 类型的观察
我有一个熊猫数据框(dfnew
),其中一列(时间戳)是datetime64[ns]
类型。现在我想看看在特定时间范围内有多少观察,比如说 10:00:00 到 12:00:00。
这会产生错误TypeError: can't compare datetime.time to Series。 我是熊猫数据框的新手。我想我在这里犯了一个非常愚蠢的错误。感谢任何帮助。