Python Pandas – Stop Truncating Strings

Not really a post here, just a note.  I just saw in Airflow code that you can do this to prevent pandas from truncating strings.  I knew the setting, but usually enter some big arbitrary int like 100000; so  this is a nice change.

# Keeping pandas from truncating long strings
pd.set_option('display.max_colwidth', -1)

1 thought on “Python Pandas – Stop Truncating Strings

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s