Hello World
The first step to learning any language is the classic "Hello World" program.
The Classic Hello World
Program
The first program we are going to write is the classic Hello World program.
The purpose of this program is to display the text “Hello World!” to the user. Let’s begin.
Press + to interact
R
# Simply use the print() keyword# Write anyting between quotation marks to print on console.print("Hello World")
A name/text followed by brackets
()
is called afunction
. We will be learning functions in a later chapter. But for now, just remember that functions are used to perform a task. For example, thisprint()
function ...