friends, how should I correct this? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

friends, how should I correct this?

import numpy as np import numpy_financial as npf prices = [3869.47, 7188.46, 22203.31, 29391.78] res = np.std(prices) print(res)

22nd Oct 2021, 4:39 PM
Tree
Tree - avatar
4 Answers
+ 3
The only difference is the variable name for the standard deviation.
22nd Oct 2021, 5:14 PM
Simon Sauter
Simon Sauter - avatar
+ 2
That depends on what you're trying to do. Your code runs fine and outputs the standard deviation of the values in prices.
22nd Oct 2021, 5:07 PM
Simon Sauter
Simon Sauter - avatar
+ 1
Simon Sauter Dankeschön
22nd Oct 2021, 5:17 PM
Tree
Tree - avatar
0
Simon Sauter Is there a difference with the code above and this one: import numpy as np import numpy_financial as npf prices = [3869.47, 7188.46, 22203.31, 29391.78] x = np.std(prices) print(x)
22nd Oct 2021, 5:11 PM
Tree
Tree - avatar