Python Hello World
Python Hello World
If you can write “hello world” you can change the world.
Raghu Venkatesh
Creating a
new Python project
First,
create a new folder called helloworld
.
Second,
launch the VS code and open the helloworld
folder.
Third,
create a new app.py
file and enter
the following code and save the file:
print(
'Hello, World!')
Code language: Python (python)
The print()
is a built-in
function that displays a message on the screen. In this example, it’ll show the
message 'Hello, Word!'
.
What is a
function
When
you sum two numbers, that’s a function. And when you multiply two numbers, that’s also a
function.
Each
function takes your inputs, applies some rules, and returns a result.
In
the above example, the print()
is a function. It
accepts a string and shows it on the screen.
Python
has many built-in functions like the print()
function to use them out of the box in your program.
In
addition, Python allows you to define your functions, which you’ll learn how to do it later.
Executing
the Python Hello World program
To
execute the app.py
file, you first
launch the Command Prompt on Windows or Terminal on macOS or Linux.
Then,
navigate to the helloworld
folder.
After
that, type the following command to execute the app.py
file:
python app.py
Code language: Python (python)
If
everything is fine, you’ll see the following message on the screen:
Hello, World!
Code language: Python (python)
If
you use VS Code, you can also launch the Terminal within the VS code by:
- Accessing
the menu Terminal
> New Terminal
- Or
using the keyboard shortcut
Ctrl+Shift+`
.
Typically,
the backtick key (`
) locates under the Esc
key on the
keyboard.
Python
IDLE
Python
IDLE is the Python Integration Development Environment (IDE) that
comes with the Python distribution by default.
The
Python IDLE is also known as an interactive interpreter. It has many features
such as:
- Code
editing with syntax highlighting
- Smart
indenting
- And
auto-completion
In
short, the Python IDLE helps you experiment with Python quickly in a
trial-and-error manner.
The
following shows you step by step how to launch the Python IDLE and use it to
execute the Python code:
First,
launch the Python IDLE program:
Enregistrer un commentaire