


To convert float of timestamp into String, we first get a DateTime object. It takes timestamp as an argument and returns DateTime object. To convert float of timestamp into a DateTime, can use omtimestamp(). Input Example: float 1617836400.0 (UTC timestamp in seconds) UTC timestamp in seconds to DateTime object

Then we can use strptimeto specify and convert into the desired format. To convert datetime string into a different format of a string, we first need to convert it into a DateTime object. This strftime method takes two arguments - DateTime object and String to specify desired string format. We can use datetime.strftimeto convert a DateTime object into String. Input Example: DateTime object " 00:00:00" strptime method takes two arguments - target string and string to explain the format of the target string. We can use datetime.strptime to create a DateTime object from a string. In this post, I'll share a cheat sheet of date and time conversion to eliminate such little time-consuming procedures and explain each technique in the following sections.Ĥ️⃣ UTC timestamp in seconds to DateTime objectĦ️⃣ UTC time string to UTC DateTime object in different GMTħ️⃣ 24-hour time String to 12-hour time String Although it is not particularly difficult, I often find myself googling the same conversion over and over again. When dealing with data, we often find ourselves handling date and time.
