I am trying to write a Python script that will calculate how many business days are in the current month. For instance if month = August
then businessDays
You could take a look at datetime.datetime.dayofweek()
but if you are not allowed to use an external library then you need to: