freeCodeCamp/guide/english/python/parenthesis-for-boolean-ope.../index.md

14 lines
288 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Python Parenthesis for Boolean Operations
---
Just as in math, parenthesis can be used to override order of operations:
>>> not True or True
True
>>> not (True or True)
False
>>> True or False and False
True
>>> (True or False) and False
False