1.

What do you mean by statement in Python?

Answer»

A statement is an instruction that the Python interpreter can execute. We have seen two kinds of statements: print and assignment. 

When you type a statement on the command line, Python executes it and displays the result, if there is one. The result of a print statement is a value. Assignment statements don’t produce a result.



Discussion

No Comment Found