Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
import pandas as pd s = pd.Series([5, 8, 0, 9, 1, 4, 7]) print(s) ''' run: 0 5 1 8 2 0 3 9 4 1 5 4 6 7 dtype: int64 '''