Computer Science

A list named studentAge stores age of students of a class. Write the Python command to import the required module and (using built-in function) to display the most common age value from the given list.

Python Libraries

3 Likes

Answer

import statistics
print(statistics.mode(studentAge))

Answered By

1 Like


Related Questions