Calculate how many feet and inches is 170cm Assume 1cm = 0.39370 inches, 1 foot = 12 inches Use format() to output in the following format 170cm equals **ft and **inch. ** indicates the appropriate number. In other words, the sum of x ft and y inches must match 170 cm. x feet + y inches = 170cm print("input your height ") h_ft = int(input("feet :")) h_inch = int(input(“inches: ”)) h_cm = round(h_inch * 0.39370 , 1) h_ft += h_inch * 12 print( “Your Height is :” , h_cm) h_ft + h_inch == h_cm cm=int(input(“enter the height in centimeters: ”)) cm=0.39370inches feet=12inches print(“The length in inches: ”, round(inches,2)) print(“The height in feet : ”,round(feet,2)) printf(" {} cm equals {} feet and {} inch\n",format(a,b,c)); h = float(input(“170”)) htoin=h*1/2.54 htofe=htoin*1/12 print(“Your height in feet is”, htofe) print(“Your height in inches is”, htoin) printf(" {} cm equals {} feet and {} inch\n",format(a,b,c)); ----------------- September 2nd, 2020 is Wednesday. What day was January 1st, 1st? Suppose February of all years was until the 28th Please note that we are not asking for the day of the week on 0/0/0 Show all calculations using Python >>> def getDayName(a,b): dayString = ["Mon", "Tue","Wed","Thu","Fri","Sat","Sun"] return dayString[datetime.date(1,a,b).weekday()] >>> print(getDayName(1,1)) Mon month = int(input("1 : ")) day = int(input("1 : ")) month_days = [0,31,28,31,30,31,30,31,30,31,30,31,30] total_days = 0 for year_item in range(1, year): total_days = total_days + 365 if year_item % 400 == 0: total_days = total_days + 1 elif year_item % 100 == 0: pass elif year_item % 4 == 0: total_days = total_days + 1 else: pass for month_index in range(1, month): total_days = total_days + month_days[month_index] total_days = total_days + day --------- You want to create a new operator === that checks if two floating point numbers match (note that there are 3 =) A === B tries to return True if the numbers A and B are less than any positive values contained in a variable called epsilon, and False otherwise. Write an inequality that returns results consistent with this intent A single-line expression that is determined to be true or false, containing A and B, and epsilon, followed by inequality and logical operators. A>B and B
Answers
Answered by
1
Answer:
???????????????????)
Answered by
0
Answer:
plz mark as brainliest answer
Explanation:
Microorganisms can prove very harmful to us, as they cause a number of diseases in human, plants and animals. ... Some serious diseases like anthrax is also caused in animals by the microbes. Microbes also cause diseases of plants like blights in potatoes, sugarcanes, oranges etc
Similar questions