Questions tagged «time»

测量执行操作所需的时间。此外,还有与获取当前时间,按时间计算,格式化和解析时间等有关的问题。



4
Python:从给定日期开始和结束一周的数据
day = "13/Oct/2013" print("Parsing :",day) day, mon, yr= day.split("/") sday = yr+" "+day+" "+mon myday = time.strptime(sday, '%Y %d %b') Sstart = yr+" "+time.strftime("%U",myday )+" 0" Send = yr+" "+time.strftime("%U",myday )+" 6" startweek = time.strptime(Sstart, '%Y %U %w') endweek = time.strptime(Send, '%Y %U %w') print("Start of week:",time.strftime("%a, %d %b %Y",startweek)) …
77 python  date  time 



10
显示其他时区的时间
是否有一种优雅的方式来显示其他时区的当前时间? 我希望本着以下一般精神: cur = <Get the current time, perhaps datetime.datetime.now()> print("Local time {}".format(cur)) print("Pacific time {}".format(<something like cur.tz('PST')>)) print("Israeli time {}".format(<something like cur.tz('IST')>))
75 python  time  timezone 


2
Java说0年是a年,但0年不存在
我正在为一些要更新的便捷方法编写一些测试用例,并决定看看如果在0年使用LocalDate的isLeapYear()方法会发生什么。据我所知,0年实际上不存在:公元1年之前是1年公元前。(这是基于我多年以前读过的一篇文章,该文章我早就忘记了。)令我惊讶的是,我的测试表明0年是a年! 我意识到java.time.LocalDate该类实现了ISO-8601,但是ISO-8601确实表明存在0年吗?我不愿意相信被测试的人LocalDate会错过这个作为测试用例,但是我也不愿意相信像ISO-8601这样的国际标准会犯这样一个明显的错误。 另一种可能性是我阅读的文章完全是错误的。(或者那是正确的,但后来又重新考虑了。) 这不是很重要,但是我很想知道错误在哪里:ISO-8601,Java的LocalDate类,或者我对时间的估算方法。
74 java  time 

5
使用std :: chrono在C ++中输出日期和时间
我一直在升级一些旧代码,并在可能的情况下尝试更新到c ++ 11。以下代码是我过去在程序中显示时间和日期的方式 #include <iostream> #include <string> #include <stdio.h> #include <time.h> const std::string return_current_time_and_date() const { time_t now = time(0); struct tm tstruct; char buf[80]; tstruct = *localtime(&now); strftime(buf, sizeof(buf), "%Y-%m-%d %X", &tstruct); return buf; } 我想使用std :: chrono(或类似的格式)以类似的格式输出当前时间和日期,但是不确定如何去做。任何帮助将不胜感激。谢谢
74 c++  date  c++11  time  chrono 

6
当前日期和时间为字符串
我编写了一个函数,用于获取格式为的当前日期和时间DD-MM-YYYY HH:MM:SS。它可以工作,但可以说,它非常难看。我该如何做完全相同但更简单的事情? string currentDateToString() { time_t now = time(0); tm *ltm = localtime(&now); string dateString = "", tmp = ""; tmp = numToString(ltm->tm_mday); if (tmp.length() == 1) tmp.insert(0, "0"); dateString += tmp; dateString += "-"; tmp = numToString(1 + ltm->tm_mon); if (tmp.length() == 1) tmp.insert(0, "0"); dateString += tmp; dateString …
74 c++  string  date  datetime  time 



16
jQuery时间选择器
从目前的情况来看,这个问题不适合我们的问答形式。我们希望答案会得到事实,参考或专业知识的支持,但是这个问题可能会引起辩论,争论,民意调查或扩展讨论。如果您认为此问题可以解决并且可以重新提出,请访问帮助中心以获取指导。 8年前关闭。 我希望用用户可以每15分钟选择一次的时间来填充文本输入。我知道那里有一些插件。我想知道是否有任何“行业标准”插件,或者出于强烈的客观原因而倾向于在常见情况下使用特定插件。


18
Python:找出本地时区
我想将日志文件中的UTC时间戳与本地时间戳进行比较。创建本地datetime对象时,我使用类似以下内容的方法: >>> local_time=datetime.datetime(2010, 4, 27, 12, 0, 0, 0, tzinfo=pytz.timezone('Israel')) 我想找到一个自动工具,将其替换tzinfo=pytz.timezone('Israel')为当前本地时区。 有任何想法吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.