Contents
Python datetime – Get Weekday Short Version
To get Weekday Short Version using Python datetime, call strftime()
with %a
passed as argument.
Example 1: Get Weekday Short Version of Current Date
In the following example, we will take the current date, and get the short version of the weekday.
#import datetime package
import datetime
#get current time
d = datetime.datetime.now()
#print date
print(d)
#get the weekday short version
print(d.strftime("%a"))
Run Output
2019-06-26 08:01:34.116109
Wed
Example 2: Get Weekday Short Version of a Specific Date
In the following example, we will take a date 2019-08-12 and get the short version of the weekday.
#import datetime package
import datetime
#set a date
d = datetime.datetime(2019, 8, 12)
#print date
print(d)
#get the weekday short version
print(d.strftime("%a"))
Run Output
2019-08-12 00:00:00
Mon
Summary
In this tutorial, we extracted the short version of weekday using datetime package.
Related Tutorials
- How to get Month Name Full Version using Python datetime?
- How to get Weekday Full Version using Python datetime?
- How to get Month Name Short Version using Python datetime?
- How to get Day of Month using Python datetime?
- Python Datetime to String
- How to get Weekday as Number using Python datetime?
- Python Compare DateTime
- How to get Month as Number using Python datetime?
- Python String to Datetime