Advertisements
Advertisements
Question
What will be the output of the following code:
import pandas as pd
s1 = pd.Series(data=2*(3, 10))
print(s1)
Short Answer
Solution
Output
0 3
1 10
2 3
3 10
Explanation: 2*(3,10) moves the tuple and uses it as the series' data.
shaalaa.com
Is there an error in this question or solution?