Answered step by step
Verified Expert Solution
Question
1 Approved Answer
10.) Write a function called sooner date that has 4 integer parameters. The first is a number between 1 and 12 (inclusive) that represents a
10.) Write a function called sooner date that has 4 integer parameters. The first is a number between 1 and 12 (inclusive) that represents a month. 1 is January, 2 is February, etc. The second is a number between 1 and 31 (inclusive) that represents a day. The third parameter is another integer representing a month and the fourth is another integer parameter representing a day. So essentially you have 2 dates (the first 2 parameters and the second 2 parameters). Figure out which date would come sooner, then print out that date in the format month / day Here are some examples of calling the function with different arguments. (The code executed is in blue, the output produced is in green): sooner_date (1, 1, 1, 2) 1/ 1 sooner_date (2, 5, 1, 3) 173 sooner_date (8, 25, 7, 30) 7 / 30 Verify that your program works by running test_conditions.py. Upload your file to the Hw3 Assignments folder on D2L
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started