9
Answer (Choose 1 answer)
In the code sample shown, what would be the result displayed on the screen?
import pandas as pd lizard_names = ["Slick", "Beast", "Dragon", "Spike"]]
lizards = pd.Series(lizard_names)
print(lizards[2])
A. Beast
B. Slick
C. Dragon
D. Spike