Welcome to AssignmentCache!

DAT/210 Week 4 Python LAB 5.20: Simple statistics

Availability: In stock

$7.00

Quick Overview

DAT/210 Week 4 Python LAB 5.20: 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



main.py
numl = float(input())
num2 = float(input())
num3 = float(input())
num4 = float(input())
''' Type your code here. '''

DAT210 Week 4 Python LAB 5.20 Simple statistics

Double click on above image to view full picture

Zoom Out
Zoom In

More Views

  • DAT210 Week 4 Python LAB 5.20 Simple statistics
  • DAT 210 LAB 5.20.1_Results
$7.00

Details

DAT/210 Week 4 Python LAB 5.20: 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


main.py
numl = float(input())
num2 = float(input())
num3 = float(input())
num4 = float(input())
''' Type your code here. '''

Additional Information

Special Price $3.00

Product Tags

Use spaces to separate tags. Use single quotes (') for phrases.

[profiler]
Memory usage: real: 18350080, emalloc: 17917520
Code ProfilerTimeCntEmallocRealMem