Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert Python time and date

2025-04-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article focuses on "how to convert Python time and date". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to change Python time and date.

Python time-date conversion is a very frequent operation in development, and you often encounter the need to convert a string to datetime or vice versa to convert datetime to a string. Datetime provides two methods, strptime and strftime, respectively, but we are always confused by these two methods. We don't know which is the string to datetime and which is the datetime to string. We have to go to Baidu Google every time, or go to check a document.

In fact, these two methods can be remembered with a little skill, and will always be remembered.

Strptime

Strptime is to convert a string into datetime, in fact, the full name of this method is "string parse time", called string parsing into time, focusing on parsing (parse), understand these three words, you will not forget.

> from datetime import datetime

> datetime.strptime ('2018-10-15 20 5929,'% Y-%m-%d% HRV% MRV% S')

Datetime.datetime (2018, 10, 15, 20, 59, 29) strftime

Strftime converts datetime to a string, the full name is "string format time", which translates to format the time in the form of a string, with emphasis on format so that it is returned as a readable string.

> datetime.now () .strftime ("Y-%m-%d H:%M:%S")

2018-11-02 16-16-12-12-16-14-12 here, I believe you all have a better understanding of "how to change Python time and date". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report