Hello World: Create your First Python Program
In the last tutorial, we completed our Python installation and setup. It’s time to create your first program.
Creating First Program
Step 1) Open PyCharm Editor. You can see the introductory screen for PyCharm. To create a new project, click on โCreate New Projectโ.
Step 2) You will need to select a location.
- You can select the location where you want the project to be created. If you donโt want to change location than keep it as it is but at least change the name from โuntitledโ to something more meaningful, like โFirstProjectโ.
- PyCharm should have found the Python interpreter you installed earlier.
- Next Click the โCreateโ Button.
Step 3) Now Go up to the โFileโ menu and select โNewโ. Next, select โPython Fileโ.
Step 4) A new pop up will appear. Now type the name of the file you want (Here we give โHelloWorldโ) and hit โOKโ.
Step 5) Now type a simple program – print (โHello World!โ).
Step 6) Now Go up to the โRunโ menu and select โRunโ to run your program.
Step 7) You can see the output of your program at the bottom of the screen.
Step 8) Don’t worry if you don’t have Pycharm Editor installed, you can still run the code from the command prompt. Enter the correct path of a file in command prompt to run the program.
The output of the code would be
Step 9) If you are still not able to run the program, we have Python Editor for you.
Please run the given code at Python Online Editor
print("Hello World")









