Important Notice:

Running Python Programs

Running Python Programs

1 views 1 min read

Running Python Programs / पायथन प्रोग्राम चलाना :-

Running Python Programs (पायथन प्रोग्राम चलाना) का अर्थ है Python में लिखे गए Program को Execute (निष्पादित) करना, ताकि Python Interpreter उस Program के प्रत्येक Statement को पढ़कर उसका Output (परिणाम) प्रदर्शित कर सके।

Python Program को मुख्य रूप से दो तरीकों से चलाया जा सकता है—

  1. Interactive Mode (Python Shell)
  2. Script Mode (Python File)

English

Running Python Programs means executing a Python program so that the Python Interpreter reads each statement and displays the output.

Python programs can mainly be executed in two ways:

  1. Interactive Mode (Python Shell)
  2. Script Mode (Python File)

Related Notes