×
×
Correct!
Insert the correct syntax to add the labels "x", "y", and "z" to a Pandas Series.
pd.Series(mylist, @(23))
pd.Series(mylist, index = ["x", "y", "z"])
pd.Series(mylist, index = ['x', 'y', 'z'])
pd.Series(mylist, index=["x","y","z"])
pd.Series(mylist, index=['x','y','z'])
pd.Series(mylist, index=["x", "y", "z"])
pd.Series(mylist, index=['x', 'y', 'z'])
pd.Series(mylist, index = ["x","y","z"])
pd.Series(mylist, index = ['x','y','z'])
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 22 exercises.
Are you sure you want to continue?