Statement
A statement expresses an action to be carried out.
Python Example
# Python statements are instructions that a Python interpreter can execute. x = 4 print(x) y = x + 5 print(y)
A statement expresses an action to be carried out.
# Python statements are instructions that a Python interpreter can execute. x = 4 print(x) y = x + 5 print(y)