Statements in Python
In Python, statements are individual instructions or commands that the interpreter can execute. They are the basic building blocks of a program.
Examples are :
Assignment statement
variable = value
x = 5
Expression statement
answer = 10 + 2
...
blog.vismayaprasad.me1 min read