Question: Given 4 floating-point numbers. Use a string formatting expression with conversion specifiers to output their product and their average as integers (rounded), then as floating-point

Given 4 floating-point numbers. Use a string formatting expression with conversion specifiers to output their product and their average as integers (rounded), then as floating-point numbers. Output each rounded integer using the following: print(f'\{your_value:.0f\}') Output each floating-point value with three digits after the decimal point, which can be achieved as follows: print (f'\{your_value: . 3f } ') Ex: If the input is
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
