Data Science Standardabweichung
import pandas as pnd
import numpy as npy
# These are the required libraries
data = pnd.read_csv("data.csv", header=0, sep=",")
std_value = npy.std(data)
print(std_value)
# read below this for more info about standard deviation
ST111