Python
Python
Arithmetic Operators
Arithmetic operators are used to performing mathematical operations like
addition, subtraction, multiplication, and division.
In Python 3.x the result of division is a floating-point while in Python 2.x
division of 2 integer was an integer and to obtain an integer result in Python
3.x floored (// integer) is used.
Operator Description Syntax
Comparison Operators
Comparison of Relational operators compares the values. It either
returns True or False according to the condition.
Operator Description Syntax
< Less than: True if the left operand is less than the right x<y
is x is the same as y x is y
x is not
is not x is not the same as y y
Logical Operators
Logical operators perform Logical AND, Logical OR, and Logical
NOT operations. It is used to combine conditional statements.
Operator Description Syntax
and Logical AND: True if both the operands are true x and y
Bitwise Operators
Bitwise operators act on bits and perform the bit-by-bit operations. These are
used to operate on binary numbers.
Operator Description Syntax
| Bitwise OR x|y
~ Bitwise NOT ~x
Assignment Operators
Assignment operators are used to assign values to the variables.
Operator Description Syntax
Identity Operators
is and is not are the identity operators both are used to check if two values
are located on the same part of the memory. Two variables that are equal do
not imply that they are identical.
is True if the operands are identical
is not True if the operands are not identical
Membership Operators
in and not in are the membership operators; used to test whether a value or
variable is in a sequence.
in True if value is found in the sequence
not in True if value is not found in the sequence
Python Keywords
Keywords in Python are reserved words that can not be used as a variable
name, function name, or any other identifier.
if import in is
yield
Variables
Variables are containers for storing data values.
Creating Variables
Python has no command for declaring a variable.
Example
x = 5
y = "John"
print(x)
print(y)
Variables do not need to be declared with any particular type, and can even
change type after they have been set.
Expression
An expression is defined as a combination of constants, variables, and
operators.
(i) 100
(ii) num
(iii) num – 20.4