How to create a series with default integers as index by passing a list of values to pandas in Python

1 Answer

0 votes
import pandas as pd

s = pd.Series([1, 2, 3, 7, 12, 18, 21])


print(s) 
 
 
 
'''
run:
 
0     1
1     2
2     3
3     7
4    12
5    18
6    21
dtype: int64
 
'''

 



answered Feb 15, 2020 by avibootz

Related questions

1 answer 187 views
1 answer 155 views
1 answer 152 views
152 views asked Jan 1, 2021 by avibootz
2 answers 222 views
1 answer 185 views
...