How to check the keywords in python?
The number of keywords in python changes frequently. In some cases keywords are converted to built -in functions. for example exec and print were the keywords in python 2.7 but in python 3 + they are converted as built in functions.
To check the list of keywords in python type
Help(“keywords”)
Then it will display the list of keywords in python.
Syntax for python
- Syntax for any programming language is the set of rules that defines how a program should be written and interpreted.
- In python we can type the code in the command line prompt and execute directly.
Different ways of running python script
There are different ways of running python script
Interactive Mode
- One of the most widely used way of running python script is interactive mode.
- To execute the code in interactive mode simply go to command prompt and type python .Then it will display the information of python version installed in your pc.
- Next, type the code and hit enter.
Example:

Here in the above the print function is used to print the text whatever inside the parenthesis.
Here we are entering the text that means it is in string format so it should be mentioned either in single quote or double quote.
Example 2:

You can run more than two lines code in interactive mode.
Note: To get out of this mode press ctrl +Z or type exit() and press enter.
PyCharm IDE
Torun the python code using an IDE like PyCharm. The following steps should be followed.
- Install PyCharm IDE and set environment path variable.
- Open the Pycharm IDE.
- Create a new project
- Specify a name to the project.
- Write the code and run.
- Code is executed.
Note: The advantage of using interpreter like Py Charm is that the file is not required to save with .py extension. It automatically saved with .py extension