Python | numpy.busday_count() method

Last Updated : 03 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of numpy.busday_count() method, we can get the value of all the valid days from starting date to ending date excluding ending date by using numpy.busday_count() method.
Syntax : numpy.busday_count(start_date, end_date) Return : Return the valid date count.
Example #1 : In this example we can see that by using numpy.busday_count() method, we are able to get the count of valid days between starting date and ending date. Python3 1=1
# import numpy
import numpy as np

# using numpy.busday_count() method
gfg = np.busday_count('2019-09', '2019-10')

print(gfg)
Output :
21
Example #2 : Python3 1=1
import numpy as np

# using numpy.busday_count() method
gfg = np.busday_count('2019-09', '2019-10', weekmask ='Sat')

print(gfg)
Output :
4

Next Article
Practice Tags :

Similar Reads