Interview Query

Business Days

Start Timer

0:00:00

Upvote
7
Downvote
Save question
Mark as completed
View comments (13)
Next question

Given two dates, write a program to find the number of business days that exist between the date range.

Example:

Input:

date1 = 2021-01-31
date2 = 2021-02-18

Output:

def delta_buss_days(date1,date2) -> 14
.
.
.
.
.


Comments

Loading comments