Python| numpy.busday_count() 方法
借助numpy.busday_count()
方法,我们可以使用numpy.busday_count()
() 方法获取从开始日期到结束日期的所有有效天数,不包括结束日期。
Syntax : numpy.busday_count(start_date, end_date)
Return : Return the valid date count.
示例 #1:
在此示例中,我们可以看到通过使用numpy.busday_count()
方法,我们能够获取开始日期和结束日期之间的有效天数。
# import numpy
import numpy as np
# using numpy.busday_count() method
gfg = np.busday_count('2019-09', '2019-10')
print(gfg)
输出 :
21
示例 #2:
import numpy as np
# using numpy.busday_count() method
gfg = np.busday_count('2019-09', '2019-10', weekmask ='Sat')
print(gfg)
输出 :