Hi everyone to create a Python Project you first have install and configure Python 3 use the following link if you haven’t do it yet, CONFIGURE PYTHON 3

The first step is look for IDLE in windows search.

Mastery#2-Image01

Open IDLE, as soon as it opens you are going to see the interactive shell of Python but this isn’t what we looking for; To begin click in FILE>NEW FILE or you can also use Ctrl + N now you have a blank space to work on it.

Mastery#2-Image02

Over here you can write again Hello World with print() function but this time we’ll add a comment

In Python 3 comments are put after a  #, so for example if you want to write a comment that says “this will print hello world!” you must type something like the following:

#This will print hello world!

So remember always use before any comment you want to use.

Here’s an example.

Mastery#2-Image03

Finally to run our mini Python 3 project we just have to press F5 and then automatically the Python IDLE will run the code in the interactive shell, when you type a comment it never appears in the program, they are just for human references.

After press F5

Mastery#2-Image04

CC BY 4.0 Create a Python Project (Inside IDLE) / Use of comments in Python 3! by cesarisc is licensed under a Creative Commons Attribution 4.0 International License.