
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas - Create a Series with both the original index and name
To create a Series with both the original index and name, use the index.to_series() method in Pandas. At first, import the required libraries -
import pandas as pd
Creating Pandas index:
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')
Convert index to series −
print("\nIndex to series...\n",index.to_series())
Example
Following is the code −
import pandas as pd # Creating Pandas index index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products') # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # convert index to series print("\nIndex to series...\n",index.to_series())
Output
This will produce the following output −
Pandas Index... Index(['Electronics', 'Accessories', 'Decor', 'Books', 'Toys'], dtype='object', name='Products') Number of elements in the index... 5 The dtype object... object Index to series... Products Electronics Electronics Accessories Accessories Decor Decor Books Books Toys Toys Name: Products, dtype: object
- Related Articles
- Python Pandas - Create a DataFrame with both the original index and name
- Python Pandas - Create a DataFrame from original index but enforce a new index
- Python Pandas - Create a DataFrame from the TimeDeltaIndex object ignoring the original index
- Python Pandas - Create a Series from TimeDeltaIndex and set the index of the resulting Series
- Python Pandas - Create a Series from TimeDeltaIndex and set the name of the resulting Series
- Python Pandas - Alter index name
- Python Pandas - Create a Series from TimeDeltaIndex
- Python - Create a new view of the Pandas Index
- Python Pandas - Set the name of the index
- Python Pandas - Create an Index with values cast to dtypes
- Python Pandas – Merge and create cartesian product from both the DataFrames
- Python Pandas - Create a DataFrame from DateTimeIndex ignoring the index
- Create a DataFrame with customized index parameters in Pandas
- Write a Python code to concatenate two Pandas series into a single series without repeating the index
- Python Pandas - Create a DataFrame with the levels of the MultiIndex as columns and substitute index level names

Advertisements