Python

How to check the keywords in python? Syntax for python and Different ways of running python script

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.

  1. Install PyCharm IDE and set environment path variable.
  2. Open the Pycharm IDE.
  3. Create a new project
  4. Specify a name to the project.
  5. Write the code and run.
  6. 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

Lakshmi Durga

Share
Published by
Lakshmi Durga

Recent Posts

What are Template Tags in WordPress? How to Use Template Tags

In wordpress if you are developing new or custom wordpress theme or wordpress plugin then…

2 months ago

Google Search Indexing Issues Started on 31st January to February 2024

If you are experiencing indexing issues of your website then you are not alone and…

3 months ago

Create QR Code for Pages & Post using Plugin in WordPress

On your wordpress website if you want to generate qr code for pages and posts…

3 months ago

Add Google Search Console HTML File Upload on WordPress

If you are trying to verify your WordPress website with google search console with html…

3 months ago

How Do I Add Google Search Console Verification HTML Tag in WordPress?

If you are on wordpress website and wondering how to keep search console html verification…

3 months ago

Why WordPress Too Many Redirects After URL Change

If you are getting too many redirects error on your WordPress website after changing url…

3 months ago