Skip to content

Instantly share code, notes, and snippets.

@FelixChop
Last active August 15, 2018 06:56
Show Gist options
  • Select an option

  • Save FelixChop/83e646585c050aa7f59f7ee0f41ec6c3 to your computer and use it in GitHub Desktop.

Select an option

Save FelixChop/83e646585c050aa7f59f7ee0f41ec6c3 to your computer and use it in GitHub Desktop.
data[data['column_1']=='french']
data[(data['column_1']=='french') & (data['year_born']==1990)]
data[(data['column_1']=='french') & (data['year_born']==1990) & ~(data['city']=='London')]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment