Skip to content

Instantly share code, notes, and snippets.

@shredding
Created February 21, 2017 09:55
Show Gist options
  • Save shredding/b72782eccea397be0e8688245a4b546f to your computer and use it in GitHub Desktop.
Save shredding/b72782eccea397be0e8688245a4b546f to your computer and use it in GitHub Desktop.
import pandas as pd
s = pd.Series(range(0, 6))
print(
# bitwise and: &
s[(s > 0) & (s % 2 == 0)],
# bitwise or: |
s[(s > 4) | (s < 2)]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment