Question: Python format 3.7 Problem 5 (2 points): Write a program to achieve following function: Given 1, print Sunday Given 2, print Monday Given 3, print
Problem 5 (2 points): Write a program to achieve following function: Given 1, print Sunday Given 2, print "Monday Given 3, print Tuesday" Given 4, print "Wednesday" Given 5, print Thursday" Given 6, print "Friday Given 7, print "Saturday. Problem 6 (3 points): Write a function is rightangled which, given the length of three sides of a triangle, will determine whether the triangle is right- angled. Assume that the third argument to the function is always the longest side. It will return True if the triangle is right-angled, or False otherwise. Recall, given a, b, c of three sides which are all valid, right- angled triangle should satisfy following constrain. a**2+b**2 = c**2, where a, b, c are 3 input parameters represents length of three sides of triangle. Problem 7 (4 points): 3 criteria must be taken into account to identify leap years: The year is evenly divisible by 4; If the year can be evenly divided by 100, it is NOT a leap year, unless; The year is also evenly divisible by 400. Then it is a leap year. Write a function that takes a year as a parameter and returns True if the year is a leap year, False otherwise
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
