Important Notice:

Course Content
Operators, Expression & Python Statement (Chapter-4) M3-R5.1
About Lesson
Statements:-

          Python statement एक instruction या code की एक unit है जिसे python interpreter execute कर सकता है। computer की language में पूरी command को statement कहा जाता है।

Example-

          >>> print(12+22)

          34

यह ऐसा इसलिए है क्योंकि आपने सिस्टम को expression 12+22 के रिजल्ट को प्रिंट करने के लिए कहा था, जो कि एक complete statement है

 

Statements:-

          A Python statement is an instruction or a unit of code that the Python interpreter can execute. In computer language the entire command is called a statement.

Example-

          >>> print(12+22)

          34

This is because you told the system to print the result of the expression 12+22, which is a complete statement.

error: Content is protected !!