UNIT1Lesson 4
UNIT1Lesson 4
Expressions,Statements,Indentations
Expression
An expression is a combination of values(Constants), variables and operators.
Operators are symbols that represent particular actions. Operands participate in the action
performed by the operator.
Any expression evaluates to a single value, which becomes the value of the
expression.
Instructions that a Python interpreter can execute are called statements. For
example, a = 1 is an assignment statement.
Example 1 :