You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, formatting the time always appends the fractional part of the seconds to the string formatted with strftime. I want to include the fractional seconds immediately after the seconds, but also include time zone information at the end of the date-time.
The following example should illustrate this.
I have the date-time format string "%FT%T%z%Z".
This produces 2020-04-15T11:31:08-0500CDT.543.
I would like to be able to format the date-time to look like this: 2020-04-15T11:31:08.543-0500CDT.
The text was updated successfully, but these errors were encountered:
Currently, formatting the time always appends the fractional part of the seconds to the string formatted with
strftime
. I want to include the fractional seconds immediately after the seconds, but also include time zone information at the end of the date-time.The following example should illustrate this.
I have the date-time format string
"%FT%T%z%Z"
.This produces
2020-04-15T11:31:08-0500CDT.543
.I would like to be able to format the date-time to look like this:
2020-04-15T11:31:08.543-0500CDT
.The text was updated successfully, but these errors were encountered: