Skip to content

Instantly share code, notes, and snippets.

@Robofied
Created February 4, 2019 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Robofied/8a6a9483ed6276c738509246003381ae to your computer and use it in GitHub Desktop.
Save Robofied/8a6a9483ed6276c738509246003381ae to your computer and use it in GitHub Desktop.
## Checking the standard deviation of above list
## Here printing upto 3 decimal places.
print('%.3f' %st.stdev(l))
#[Output]:
#32.496
## Checking the variance.
print('%.3f' %st.variance(l))
#[Output]:
#6.229
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment