CBSE Class 11 Computer Science
Question 6 of 63
Introduction to Python Modules — Question 6
Back to all questions 6
Question Assertion (A): Python has a built-in math module that you can use for mathematical tasks.
Reasoning (R): The mean() method calculates the arithmetic mean of the numbers in a list using math module.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
A is true but R is false.
Explanation
Python has a built-in math module that we can use for mathematical tasks. The mean() method calculates the arithmetic mean of the numbers in a list using statistics module.