About 11,300,000 results
Open links in new tab
  1. What is the difference between strptime and strftime?

    Oct 21, 2018 · strftime creates a formatted string for given time/date/datetime object according to specified format by the user you would use strftime to convert a datetime object like this: datetime …

  2. How to use %f with strftime () in Python to get microseconds?

    I'm trying to use strftime() to microsecond precision, which seems possible using %f (as stated here). However when I try the following code: import time import strftime from time print strftime(&...

  3. Python strftime - date without leading 0? - Stack Overflow

    May 25, 2009 · When using Python strftime, is there a way to remove the first 0 of the date if it's before the 10th, ie. so 01 is 1? Can't find a %thingy for that? Thanks!

  4. Converting a string to a formatted date-time string using Python

    Dec 29, 2009 · 14 time.strptime returns a time_struct; time.strftime accepts a time_struct as an optional parameter: python Copy

  5. How do I turn a python datetime into a string, with readable format ...

    The datetime class has a method strftime. The Python docs documents the different formats it accepts: strftime () and strptime () Behavior For this specific example, it would look something like:

  6. Converting (YYYY-MM-DD-HH:MM:SS) date time - Stack Overflow

    76 Use datetime.strptime () to parse the inDate string into a date object, use datetime.strftime () to output in whatever format you like:

  7. python - Formatting Time as %d-%m-%y - Stack Overflow

    Jun 9, 2013 · You cannot use strftime on a string as it is not a method of string, one way to do this is by using the datetime module:

  8. How to format time.time() using strftime() in python

    Feb 9, 2020 · How to format time.time () using strftime () in python [duplicate] Asked 5 years, 10 months ago Modified 5 years, 10 months ago Viewed 22k times

  9. How do I get the current time in Python? - Stack Overflow

    strftime(time_format) returns the current local time as a string that corresponds to the given time_format. Note: time.strftime() and datetime.strftime() support different directive sets e.g., %z is not supported …

  10. Python Datetime : use strftime() with a timezone-aware date

    Apr 19, 2009 · Python Datetime : use strftime () with a timezone-aware date Asked 7 years, 10 months ago Modified 5 months ago Viewed 167k times