Python uses boolean logic to evaluate conditions. The boolean values True and False are returned when an expression is compared or evaluated. For example:
Notice that variable assignment is done using a single equals operator "=", whereas comparison between two variables is done using the double equals operator "==". The "not equals" operator is marked as "!=".
1. Boolean operators
The "and", "or" and "not" boolean operators allow building complex boolean expressions, for example:
2. The "in" operator
The "in" operator could be used to check if a specified object exists within an iterable object container, such as a list:
Python uses indentation to define code blocks, instead of brackets. The standard Python indentation is 4 spaces, although tabs and any other space size will work, as long as it is consistent. Notice that code blocks do not need any termination.
Here is an example for using Python's "if" statement using code blocks:
A statement is evaulated as true if one of the following is correct: 1. The "True" boolean variable is given, or calculated using an expression, such as an arithmetic comparison. 2. An object which is not considered "empty" is passed.
Here are some examples for objects which are considered as empty: 1. An empty string: "" 2. An empty list: [] 3. The number zero: 0 4. The false boolean variable: False
3. The 'is' and 'not' operator
Unlike the double equals operator "==", the "is" operator does not match the values of the variables, but the instances themselves. Using "not" before a boolean expression inverts it For example:
No comments:
Post a Comment