w3resource

Pandas DataFrame: add_prefix() function

DataFrame - add_prefix() function

The add_prefix() function is used to prefix labels with string prefix.

For Series, the row labels are prefixed. For DataFrame, the column labels are prefixed.

Syntax:

DataFrame.add_prefix(self, prefix)

Parameters:

Name Description Type/Default Value Required / Optional
prefix           

The string to add before each label.

 str Required

Returns: Series or DataFrame
New Series or DataFrame with updated labels.

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - nunique() function
Next: DataFrame - add_suffix() function



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/pandas/dataframe/dataframe-add_prefix.php