Differences between revisions 6 and 7
Revision 6 as of 2023-04-11 19:29:01
Size: 2417
Comment:
Revision 7 as of 2023-04-11 19:34:23
Size: 2612
Comment:
Deletions are marked like this. Additions are marked like this.
Line 36: Line 36:

----



== TimeZone ==

A `datetime.timezone` represents a fixed offset from UTC.

----



== TZInfo ==

An abstract base class for `datetime.timezone`. Not to be used directly.

Python Datetime


Date

See here.


Datetime

See here.


Time

See here.


TimeDelta

See here.


TimeZone

A datetime.timezone represents a fixed offset from UTC.


TZInfo

An abstract base class for datetime.timezone. Not to be used directly.


StrFTime and StrPTime

Directive

Meaning

Example Values

%a

weekday in locale abbreviated name

Sun

%A

weekday in locale full name

Sunday

%w

weekday as an integer

0 (as Sunday), 6 (as Saturday)

%d

day of the month as a zero-padded integer

01

%b

month in locale abbreviated name

Jan

%B

month in locale full name

January

%m

month as a zero-padded integer

01

%y

year as a zero-padded two-digit integer

00

%Y

year as a zero-padded four-digit integer

0001

%H

24-hour clock hour as a zero-padded integer

00

%I

12-hour clock hour as a zero-padded integer

01

%p

locale equivalent of AM/PM.

AM

%M

minute as a zero-padded integer

00

%S

second as a zero-padded integer

00

%f

microsecond as a zero-padded six-digit integer

000000

%z

UTC offset in the form ±HHMM[SS[.ffffff]], or empty if the object is naive

+0000, -0400, +1030, +063415, -030712.345216

%Z

time zone name, or empty if the object is naive

UTC

%j

day of the year as a zero-padded integer

001

%U

week of the year as a zero-padded two-digit integer; all days preceding the first Sunday are in week 0

00

%W

week of the year as a zero-padded two-digit integer; all days preceding the first Monday are in week 0

00

%c

locale datetime representation

Tue Aug 16 21:30:00 1988

%x

locale date representation

08/16/1988

%X

locale time representation

21:30:00

%%

literal %

%G

year that contains the greater part of the ISO week (%V) zero-padded four-digit integer

0001

%u

weekday as an integer

1 (as Monday), 7 (as Sunday)

%V

week of the year as a zero-padded two-digit number; week 01 is the week beginning on a Monday that contains January 4th; all preceding days belong to the prior year

01


See also

Python datetime module documentation


CategoryRicottone

Python/Datetime (last edited 2023-06-15 18:29:46 by DominicRicottone)