如何在格式为“%Y-%m-%dT%H:%M:%S”的变量中减去 1 分钟
我有一个保存日期和日期的变量时间 = '2022-02-27T07:43:00'。 (字母“T”是强制性的,默认情况下来自我的数据库。我仍然需要在所有变量之间使用“T”)。现在我需要负 1 分钟并将该值分配给格式相同的新变量 = '%Y-%m-%dT%H:%M:%S'。
I have a variable which holds the date & time as like = '2022-02-27T07:43:00'. (letter "T" is mandatory which is coming from my database by default. I still need that "T" in-between for all the variables). Now I need to minus 1 minute and assign that value to a new variable in the same format = '%Y-%m-%dT%H:%M:%S'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的可能是
dateutil.parser.parse
以及timedelta
函数。输出
What you need is probably
dateutil.parser.parse
and alsotimedelta
function to the trick.Output