Computer Science, asked by saisathish, 4 months ago

def m(data)

        Diff = max(data) – min(data)

         return(Diff)

The above defined data function in Python programming, will calculate the?

Answers

Answered by advanibharti9
0

Answer:

Range

Explanation

In Central tendency calculation: Range=Max-Min

Answered by sourasghotekar123
0

Answer:

def m(data)

       Diff = max(data) – min(data)

        return(Diff)

Range is the correct answer for the above question.

Explanation:

The above-defined function is in python, which takes the list and identifies the minimum and maximum value.

The maximum and minimum value is identified by the help of max and min function in python.

Then the minimum value is subtracted from the maximum value which is the formula to find the range.

Hence Range is the correct answer while the other is not because others will not find by the program definition.

The project code is #SPJ3

Similar questions