PDT — Pacific Daylight Time

PDT is Pacific Daylight Time, -07:00, used in North America. In code, use America/Los_Angeles rather than the abbreviation.

Pacific Daylight Time · North America
17:26:12
Wednesday, 12 August 2026
abbreviation denotes
-07:00
in force right now
PDT (UTC-07:00) · DST
use in code
America/Los_Angeles
next clock change
1 Nov 2026 01:00 → PST

Use the IANA name, not the abbreviation

Python
from datetime import datetime
from zoneinfo import ZoneInfo

# right: an IANA zone carries the full history of rule changes
now = datetime.now(ZoneInfo("America/Los_Angeles"))
print(now.isoformat(), now.tzname())

# wrong: an abbreviation is not resolvable, and a hard-coded offset
# silently rots the next time the rules change
# now = datetime.now(timezone(timedelta(hours=...)))  # don't

PDT questions

What does PDT stand for?
PDT is Pacific Daylight Time, -07:00, used in North America. The IANA zone to use in code is America/Los_Angeles.
What time is it in PDT right now?
Pacific Daylight Time: 17:26 on Wednesday (PDT).
Which IANA timezone should I use instead of PDT?
America/Los_Angeles for Pacific Daylight Time. Date libraries cannot resolve bare abbreviations, and an abbreviation carries no daylight-saving history, so a stored offset silently rots when a government changes the rules.

Other abbreviations

Keyboard shortcuts

cCopy the ISO 8601 timestamp
uCopy the Unix timestamp
/Focus the timezone search
tToggle light and dark
?This help
EscClose