Answers for "remove columns that contain certain names in pandas"

0

remove columns that contain certain names in pandas

df = df.drop(df.filter(regex='Test').columns, axis=1)
Posted by: Guest on September-17-2021

Code answers related to "remove columns that contain certain names in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language