sanketp79 / fsdse-python-assignment-87

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create a one-dimensional array-like object containing an array of data.

Create a list of elements and convert it into panda series. Function should return panda series i.e. type of object should be pandas series.

Sample Input:

[2, 4, 6, 8, 10]

Sample Output after printing return value of function.

index value
0 2
1 4
2 6
3 8
4 10
dtype: int64

About


Languages

Language:Python 100.0%