Hello, World

It's time to start writing some real, working Python code. It'll be very simple for the time being. 

As we're going to show you some fundamental concepts and terms, these snippets of code won't be serious or complex. 

Run the code in the editor window on the right. If everything goes okay here, you'll see the line of text in the console window. 

Alternatively, launch IDLE, create a new Python source file, fill it with this code , name the file and save it. Now run it. If everything goes okay, you'll see the rhyme's line in the IDLE console window. The code you have run should look familiar. You saw something very similar when we led you through the setting up of the IDLE environment. 

Now we'll spend some time showing and explaining to you what you're actually seeing, and why it looks like this. 

As you can see, the first program consists of the following parts: 

  • the word print
  • an opening parenthesis
  • a quotation mark
  • a line of text: Hello, World!
  • another quotation mark
  • a closing parenthesis

Each of the above plays a very important role in the code

The print() function

Look at the line of code below:

print ("Hello, World!")

The word print that you can see here is a function name. That doesn't mean that wherever the word appears it is always a function name. The meaning of the word comes from the context in which the word has been used. 

You've probably encountered the term function many times before, during math classes. You can probably also list several names of mathematical functions, line sine or log. 

Python functions, however, are more flexible, and can contain more content than their mathematical siblings. 

A function (in this context) is a separate part of the computer code able to: 

  • cause some effect (e.g., send text to the terminal, create a file, draw an image, play a sound, etc.); this is something completely unheard of in the world of mathematics. 
  • evaluate a value (e.g., the square root of a value or the length of a given text) and return it as the function's result; this is what makes Python functions the relatives of mathematical concepts. 

Morever, many of Python functions can do the above two things together. 

Where do functions come from? 

  • They may come from Python itself; the print function is one of this kind; suhc a function is an added value received together with Python and its environment (it is built-in); you don't have to do anything special (e.g., ask anyone for anything) if you want to make use of it
  • they may come from one or more of Python's add-ons name modules; some of the modules come with Python, others may require separate installation - whatever the case, they all need to be explicitily connected with your code (we'll show you how to do that soon)
  • You can  write them yourself, placing as many functions as you want and need inside your program to make it simpler, cleare and more elegant

The name of the function should be significant (the name of the print function is self-evident)

Of course, if you're going to make sure of any already existing function, you have no influence on its name, but when you start writing your own functions, you should considet your choice of names.