stt python code example
Example 1: std python
import numpy as np
values=[1,10,100]
print(np.std(values))
values=[1,10,100,np.nan]
print(np.nanstd(values))
Example 2: str in python
#Strings or alphabets or -, +, *, /, ", :, ;, (, ) etc
#If there is a string then it means the value will be inside coates
a = 'Roger'
print(a, 'is my name')