Skip to content

Instantly share code, notes, and snippets.

@Bookoff
Created February 20, 2015 01:20
Show Gist options
  • Save Bookoff/50730b14da209587bd81 to your computer and use it in GitHub Desktop.
Save Bookoff/50730b14da209587bd81 to your computer and use it in GitHub Desktop.
Drop data
print df.drop(df.columns[[1, 2]], axis = 1).head()
# ВЫВОД
# Alpha Tetta Zeta
# 0 1243 3300 10553
# 1 4158 8063 35257
# 2 1787 1074 4544
# 3 17152 19607 31687
# 4 1266 3315 8520
#
# [5 rows x 3 columns]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment