What will be the output of the following Python code? import pandas as pd S=$…
2023
What will be the output of the following Python code? import pandas as pd S=$ pd.series(20, 30) print(S)
- A.
TypeError / TypeError
- B.
20 30 / 20 30
- C.
0 20 1 30 / 0 20 1 30
- D.
0 1 20 30 / 0 1 20 30
Attempted by 973 students.
Show answer & explanation
Correct answer: A
The code is incorrect because pd.series(20, 30) is not valid . The correct function name is pd.Series (capital S), and Series() does not accept two integers like (20, 30) as arguments. So this code will produce an error , not an output.