You are currently viewing Writing your first program in Python

Writing your first program in Python

Now since we have installed Python on Windows machine, Now it is time to write our first Python Program. In this article, we will use Command Prompt and will print Hello World in Python. To do that just follow the steps below.

1.) Open Command Prompt and type python than press Enter.

2.) Then type print(‘Hello World’) press enter.

In python print is a function which is used to print on the screen.

Leave a Reply