Hi this is César the author of this blog, this post is made to explain some points about Python 3.
This post is for Windows users.


In this first post we will be seeing how to create a Python file and how to run it from the terminal, for this I’m going to use the famous phrase “Hello World!” and we will learn the basic output in Python, print().
The first step to begin with Python 3 is download Python 3 for its official website www.python.org , I recommend you to use the latest version.
The next step is download Cygwin a really nice terminal that will help you a lot
To download Cygwin, go to this website http://www.cygwin.com at the left side in the Install button, and then select the version you need.
It is important for the installation of Cygwin, select the Python option, because the other way it won’t work
Prevent errors and just install what you need in this case just Python 3 and Cygwin.

In Python we have something called Built-in Functions, these are the functions that Python has for default and always are available, within this 68 functions, there is the print()
Print() is a powerful and easy function, this function literally print the value you assign to it.
For example let’s say you want to print “Hello World”

Just open Notepad in Windows and type:

**Notice that print(), the value is inside the parentheses.

Mastery#1-Image01

And after this save your file as hello.py, as you can see python uses .py as extension, then open cygwin and look for the folder you save the python file (I recommend desktop) after that type: python3 hello.py, to run your script

Mastery#1-Image02

CC BY 4.0 How to create an account in Twitter, GitHub and WordPress / Create Hello World! by cesarisc is licensed under a Creative Commons Attribution 4.0 International License.