To compute the variance of two arrays (or lists) in Python, you can use the variance
function from the statistics
module. Here's an example:
main.py232 chars11 lines
In this example, we first import the statistics
module. We then define two arrays array1
and array2
. We compute the variance of each array using the variance
function and store them in the variables variance1
and variance2
. Finally, we print the variances.
Output:
main.py48 chars3 lines
Note that the variance
function expects a list or tuple as its argument, so we can use either an array or a list in this case.
gistlibby LogSnag