Predictive Hacks

How to Add Prefix and Suffix in Pandas Column names

Pandas has a built-in function for adding column prefixes and suffxies. For example:

import pandas as pd

df = pd.DataFrame({'A': [1, 2, 3, 4], 'B': [3, 4, 5, 6]})
df
df.add_prefix('Var_')

Similarly, we can add suffixes:

df.add_suffix('_Col')

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.