Search⌘ K
AI Features

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.

Problem statement

Write a program to receive an arbitrary number of floats using one input() statement. Calculate ...