Challenge: Compute the Average of an Arbitrary Number of Inputs
Understand how to capture an arbitrary number of floating-point inputs from the console in Python and calculate their average. This lesson guides you through writing a program that processes multiple inputs efficiently and prints the computed average, reinforcing your skills with console I/O and data manipulation.
We'll cover the following...
We'll cover the following...
Problem statement
Write a program to receive an arbitrary number of floats using one input() statement. Calculate ...