fork download
  1. # your code goes here
  2. import pandas as pd
  3. s=pd.Series([1,2,3,4,5],index=['a','b','c','d','e'])
  4. print (s)
  5.  
Success #stdin #stdout 2.56s 77588KB
stdin
Standard input is empty
stdout
a    1
b    2
c    3
d    4
e    5
dtype: int64