Python Firat 4chapters
Python Firat 4chapters
1 | Page
Python Programming
2 | Page
Python Programming
3 | Page
Python Programming
Floor Division Assignment: produces the important part of the proportion of its operands where the
Exponentiation Assignment: Evaluates to the result of raising the first operand to
the power of the second operand.
5. Logical operators: The logical operators are used for comparing or negating the logical
values of their operands and to return the resulting logical value.
AND operator: Performs AND operation and the result is True when both operands
are True.
OR operator: Performs OR operation and the result is True when any one of both
operands is True.
6. Bitwise operators: treat their operands as a sequence of bits (zeroes and ones) and
perform bit by bit operation.
7. AND Binary: Result is one in each bit position for which the corresponding bits of both
operands are 1s.
8. OR Binary: Result is one in each bit position for which the corresponding bits of either
or both operands are 1s.
9. Indentation: is the visual structure of how your code is laid out.
4 | Page
Python Programming
5 | Page