Toggle search
Search
Toggle menu
notifications
Toggle personal menu
Editing
Python Hello World
From OpenCourse
Views
Read
Edit
Edit source
View history
associated-pages
Page
Discussion
More actions
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
In this lesson, we will create a 'Hello World' program in Python. == Lesson content == In this lesson, we will learn: * What hello world programs are * Coding a hello world program in Python * How our code works * Running Python code through the terminal * Program output == Hello world programs == A '<nowiki/>'''hello world'''' program is a simple program that prints the string '''"Hello world"''' to the console. A string is another word for text. The console is the text-based window you see when opening a terminal or command prompt. === Why use a hello world program? === Hello world programs are used because they are very simple to write. They are a good introduction to programming, as they are an easy way to learn the basic syntax (grammar) of the language. == Coding == Now let's get coding! In this chapter, we will open our program in a text editor, and write our first line of code! === Opening the file === First, we need to open up our program. If you are using a code editor, such as VS Codium, open your project folder using the 'Open Folder' feature. Otherwise, simply open '''hello.py''' in a normal text editor using the 'Open' button. === Writing the code === Inside '''hello.py''', write the following code: '''print("Hello world")''' We will go over how this code works in the next chapter. == How it works == Our program contains 3 main tokens: * print * () * "Hello world" == The print function == In our program, we call the '''print''' function. == Python course == This lesson is part of the Python course. [[Python Variables|Go to the next lesson]]. [[Installing Python|Go to the previous lesson]]. [[Python|Go back to the course overview]]. [[Category:Python]]
Summary:
Please note that all contributions to OpenCourse are considered to be released under the Public Domain (see
OpenCourse:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)