4.19 LAB: Simple statistics 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('{:.ef}'.format(your_value)) Output each floating-point value with three digits after the decimal point, which can be achieved as follows: print('{:.3f}'.format (your_value)) Ex: If the input is: 8.3 10.4 5.0 4.8 the output is: 2072 7 2071.680 7.125 328740 2125898 qx3zay? LAB 4.19.1: LAB: Simple statistics 0/10 АCTIVITY main.py Load default template.. 1 numl = float (input ()) 2 num2 = float (input()) 3 num3 = float(input ()) 4 num4 = float(input()) 6 " Type your code here. "" 7|

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter2: Basic Elements Of C++
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

please here is my python lab screenshot of simple statistics

4.19 LAB: Simple statistics
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('{:.0f}'.format(your_value))
Output each floating-point value with three digits after the decimal point, which can be achieved as follows:
print('{:.3f}'.format(your_value))
Ex: If the input is:
8.3
10.4
5.0
4.8
the output is:
2072 7
2071.680 7.125
328740.2125898.gx3zgy7
LAB
4.19.1: LAB: Simple statistics
0/ 10
ACTIVITY
main.py
Load default template...
float(input())
2 num2 = float(input())
float(input())
float(input())
1 num1 =
3 num3 =
4 num4 =
6.
Type your code here.
7
Transcribed Image Text:4.19 LAB: Simple statistics 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('{:.0f}'.format(your_value)) Output each floating-point value with three digits after the decimal point, which can be achieved as follows: print('{:.3f}'.format(your_value)) Ex: If the input is: 8.3 10.4 5.0 4.8 the output is: 2072 7 2071.680 7.125 328740.2125898.gx3zgy7 LAB 4.19.1: LAB: Simple statistics 0/ 10 ACTIVITY main.py Load default template... float(input()) 2 num2 = float(input()) float(input()) float(input()) 1 num1 = 3 num3 = 4 num4 = 6. Type your code here. 7
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning