Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The fractional_part function divides the numerator by the denominator, and returns just the fractional part (a number between 0 and 1). Complete the body
The fractional_part function divides the numerator by the denominator, and returns just the fractional part (a number between 0 and 1). Complete the body of the function so that it returns the right number. Note: Since division by 0 produces an error, if the denominator is 0, the function should return 0 instead of attempting the division. 1- def fractional_part(numerator, denominator): # Operate with numerator and denominator to # keep just the fractional part of the quotient 2 3 4 return 0 print(fractional_part(5, 5)) # Should be 0 print(fractional_part(5, 4)) 8 print(fractional_part(5, 3)) # Should be 0.66... 9 print(fractional_part(5, 2)) # Should be 0.5 print(fractional_part(5, 0)) # Should be 0 print(fractional_part(0, 5)) # Should be 0 6. Should be 0.25 Run 10 Reset 11
Step by Step Solution
There are 3 Steps involved in it
Step: 1
def fractionalpartnumeratordenominator ifdenominator0 or numerator 0 x0 els...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