Standard deviation

Report a typo

Read three integers from the input (each is on a new line) and create a one-dimensional array out of them. Print the standard deviation of your array.

Sample Input 1:

44
678
55

Sample Output 1:

296.3117727439574
Write a program in Python 3
import numpy as np
___

Create a free account to access the full topic