In Python, you can find the weekday of a date using the weekday() or isoweekday() method of the date object from the datetime module.

The weekday() method returns the day of the week as an integer, where Monday is 0 and Sunday is 6. The isoweekday() method returns the day of the week as an integer, where Monday is 1 and Sunday is 7.

Here's an example of how to find the weekday of a date:

import datetime
 
my_date = datetime.date(2022, 3, 14)
 
weekday_num = my_date.weekday()
print(weekday_num)  # 0 (Monday)
 
isoweekday_num = my_date.isoweekday()
print(isoweekday_num)  # 1 (Monday)

In this example, we create a date object for March 14, 2022 and then use the weekday() method to find that it is a Monda