Find Day of Week in Python

I am using the below code to get the current date from the system date in python program.

But i also require the day of week for the current date in the same program.

How to get it using date format specifiers?

from datetime import date
print(date.today().strftime("%d"))