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
Convert the standard ``datetime`` object presentation into a formatted string.
98
-
The convension specifications are the same as in the `FreeBSD strftime <https://www.freebsd.org/cgi/man.cgi?query=strftime&sektion=3>`__.
99
-
Additional convension for nanoseconds is `%f` which also allows the modifier to control the output precision of fractional part (see example below).
98
+
The formatting convension specifications are the same as in the `FreeBSD strftime <https://www.freebsd.org/cgi/man.cgi?query=strftime&sektion=3>`__.
99
+
Additional convension for nanoseconds is `%f` which also allows a modifier to control the output precision of fractional part: `%5f` (see the example below).
100
+
If no arguments are set for the method, the default convensions are used: `'%FT%T.%f%z'` (see the example below).
100
101
101
-
:param string convension_specifications:[TBD]
102
+
:param string convension_specifications:string consisting of zero or more conversion specifications and ordinary characters
102
103
103
-
:return: string with the formatted date and time information [TBD]
104
+
:return: string with the formatted date and time information
0 commit comments