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 comment