Last updated 5 years ago
Was this helpful?
Reference: .
Once you have learned about lists, you can perform statistics-related operations on them:
import statistics # load the module to avoid `NameError: name 'statistics' is not defined` arr = [1, 2, 2, 3, 4, 6, 7, 8, 9] statistics.mean(arr) #> 4.666666666666667 statistics.median(arr) #> 4 statistics.mode(arr) #> 2