1. How to calculate the standard deviation of a Series?
B. series.std()
2. How to calculate the variance of a Series?
D. series.var()
3. How to calculate the cumulative sum of a Series?
A. series.cumsum()
How to drop duplicate values from a Series? - Bonus
A. series.drop_duplicates()
#python #interviewquestions #pandas #pandastutorial