
line. First, we will see the simplest program to understand how to execute python code. Then
we will get into the syntax and learn more about python.
Let’s start our first program. We will begin with “Hello World!”.
For the sake of this first exercise, we will simply use the Python interpreter, which permits
us to test our code on the command line one at a time.
Open a terminal window, and type the following command
python
Once you press enter, you will be presented with three greater-than signs >>>
On that prompt type the following command
Print(“Hello World”)
And after pressing enter, you will see “Hello World” back on the terminal window.
You can come ...