Introduction to Python
Introduction to Python
Part of this chapter is based on tutorials by Geek Girls Carrots (https://github.com/ggcarrots/django-carrots).
Let's write some code!
Your first Python command!
After running the Python command, the prompt changed to >>>
. For us this means that for now we may only use commands in the Python language. You don't have to type in >>>
– Python will do that for you.
If you want to exit the Python console at any point, type exit()
or use the shortcut Ctrl + Z
for Windows and Ctrl + D
for Mac/Linux. Then you won't see >>>
any longer.
For now, we don't want to exit the Python console. We want to learn more about it. Let's start by typing some math, like 2 + 3
and hitting enter
.
Nice! See how the answer popped out? Python knows math! You could try other commands like:
4 * 5
5 - 1
40 / 2
To perform exponential calculation, say 2 to the power 3, we type:
Have fun with this for a little while and then get back here. :)
As you can see, Python is a great calculator. If you're wondering what else you can do…
Strings
How about your name? Type your first name in quotes like this:
You've now created your first string! It's a sequence of characters that can be processed by a computer. The string must always begin and end with the same character. This may be single ('
) or double ("
) quotes (there is no difference!) The quotes tell Python that what's inside of them is a string.
Strings can be strung together. Try this:
You can also multiply strings with a number:
If you need to put an apostrophe inside your string, you have two ways to do it.
Using double quotes:
or escaping the apostrophe with a backslash (\
):
Nice, huh? To see your name in uppercase letters, type:
You just used the upper
method on your string! A method (like upper()
) is a sequence of instructions that Python has to perform on a given object ("Ola"
) once you call it.
If you want to know the number of letters contained in your name, there is a function for that too!
Wonder why sometimes you call functions with a .
at the end of a string (like "Ola".upper()
) and sometimes you first call a function and place the string in parentheses? Well, in some cases, functions belong to objects, like upper()
, which can only be performed on strings. In this case, we call the function a method. Other times, functions don't belong to anything specific and can be used on different types of objects, just like len()
. That's why we're giving "Ola"
as a parameter to the len
function.
Summary
OK, enough of strings. So far you've learned about:
the prompt – typing commands (code) into the Python prompt results in answers in Python
numbers and strings – in Python numbers are used for math and strings for text objects
operators – like
+
and*
, combine values to produce a new onefunctions – like
upper()
andlen()
, perform actions on objects.
These are the basics of every programming language you learn. Ready for something harder? We bet you are!
Errors
Let's try something new. Can we get the length of a number the same way we could find out the length of our name? Type in len(304023)
and hit enter
:
We got our first error! The {{ warning_icon }} icon is our way of giving you a heads up that the code you are about to run won't work as expected. Making mistakes (even intentional ones) are an important part of learning!
It says that objects of type "int" (integers, whole numbers) have no length. So what can we do now? Maybe we can write our number as a string? Strings have a length, right?
It worked! We used the str
function inside of the len
function. str()
converts everything to strings.
The
str
function converts things into stringsThe
int
function converts things into integers
Important: we can convert numbers into text, but we can't necessarily convert text into numbers – what would
int('hello')
be anyway?
Variables
An important concept in programming is variables. A variable is nothing more than a name for something so you can use it later. Programmers use these variables to store data, make their code more readable and so they don't have to keep remembering what things are.
Let's say we want to create a new variable called name
:
We type name equals Ola.
As you've noticed, your program didn't return anything like it did before. So how do we know that the variable actually exists? Enter name
and hit enter
:
Yippee! Your first variable! :) You can always change what it refers to:
You can use it in functions too:
Awesome, right? Now, variables can be anything – numbers too! Try this:
But what if we used the wrong name? Can you guess what would happen? Let's try!
An error! As you can see, Python has different types of errors and this one is called a NameError. Python will give you this error if you try to use a variable that hasn't been defined yet. If you encounter this error later, check your code to see if you've mistyped any names.
Play with this for a while and see what you can do!
The print function
Try this:
When you just type name
, the Python interpreter responds with the string representation of the variable 'name', which is the letters M-a-r-i-a, surrounded by single quotes, ''. When you say print(name)
, Python will "print" the contents of the variable to the screen, without the quotes, which is neater.
As we'll see later, print()
is also useful when we want to print things from inside functions, or when we want to print things on multiple lines.
Lists
Beside strings and integers, Python has all sorts of different types of objects. Now we're going to introduce one called list. Lists are exactly what you think they are: objects which are lists of other objects. :)
Go ahead and create a list:
Yes, this list is empty. Not very useful, right? Let's create a list of lottery numbers. We don't want to repeat ourselves all the time, so we will put it in a variable, too:
All right, we have a list! What can we do with it? Let's see how many lottery numbers there are in a list. Do you have any idea which function you should use for that? You know this already!
Yes! len()
can give you a number of objects in a list. Handy, right? Maybe we will sort it now:
This doesn't return anything, it just changed the order in which the numbers appear in the list. Let's print it out again and see what happened:
As you can see, the numbers in your list are now sorted from the lowest to highest value. Congrats!
Maybe we want to reverse that order? Let's do that!
If you want to add something to your list, you can do this by typing this command:
If you want to show only the first number, you can do this by using indexes. An index is the number that says where in a list an item occurs. Programmers prefer to start counting at 0, so the first object in your list is at index 0, the next one is at 1, and so on. Try this:
As you can see, you can access different objects in your list by using the list's name and the object's index inside of square brackets.
To delete something from your list you will need to use indexes as we learned above and the pop()
method. Let's try an example and reinforce what we learned previously; we will be deleting the first number of our list.
That worked like a charm!
For extra fun, try some other indexes: 6, 7, 1000, -1, -6 or -1000. See if you can predict the result before trying the command. Do the results make sense?
You can find a list of all available list methods in this chapter of the Python documentation: https://docs.python.org/3/tutorial/datastructures.html
Dictionaries
A dictionary is similar to a list, but you access values by looking up a key instead of a numeric index. A key can be any string or number. The syntax to define an empty dictionary is:
This shows that you just created an empty dictionary. Hurray!
Now, try writing the following command (try substituting your own information, too):
With this command, you just created a variable named participant
with three key–value pairs:
The key
name
points to the value'Ola'
(astring
object),country
points to'Poland'
(anotherstring
),and
favorite_numbers
points to[7, 42, 92]
(alist
with three numbers in it).
You can check the content of individual keys with this syntax:
See, it's similar to a list. But you don't need to remember the index – just the name.
What happens if we ask Python the value of a key that doesn't exist? Can you guess? Let's try it and see!
Look, another error! This one is a KeyError. Python is helpful and tells you that the key 'age'
doesn't exist in this dictionary.
When should you use a dictionary or a list? Well, that's a good point to ponder. Think about the answer before looking at it in the next line.
Do you just need an ordered sequence of items? Go for a list.
Do you need to associate values with keys, so you can look them up efficiently (by key) later on? Use a dictionary.
Like lists, using the len()
function on the dictionaries returns the number of key–value pairs in the dictionary. Go ahead and type in this command:
Dictionaries, like lists, are mutable, meaning that they can be changed after they are created. You can add new key–value pairs to a dictionary after it is created, like this:
I hope it makes sense up to now. :) Ready for some more fun with dictionaries? Read on for some amazing things.
You can use the pop()
method to delete an item in the dictionary. Say, if you want to delete the entry corresponding to the key 'favorite_numbers'
, type in the following command:
As you can see from the output, the key–value pair corresponding to the 'favorite_numbers' key has been deleted.
As well as this, you can also change a value associated with an already-created key in the dictionary. Type this:
As you can see, the value of the key 'country'
has been altered from 'Poland'
to 'Germany'
. :) Exciting? Hurrah! You just learned another amazing thing.
Summary
Awesome! You know a lot about programming now. In this last part you learned about:
errors – you now know how to read and understand errors that show up if Python doesn't understand a command you've given it
variables – names for objects that allow you to code more easily and to make your code more readable
lists – lists of objects stored in a particular order
dictionaries – objects stored as key–value pairs
Excited for the next part? :)
Compare things
A big part of programming involves comparing things. What's the easiest thing to compare? Numbers! Let's see how that works:
We gave Python some numbers to compare. As you can see, not only can Python compare numbers, but it can also compare values of mathematical expressions like 2 * 2
and function results like the 2
returned by len([4, 5])
. Nice, huh?
Do you wonder why we put two equal signs ==
next to each other to compare if numbers are equal? We use a single =
for assigning values to variables. You always, always need to put two of them – ==
– if you want to check if things are equal to each other. We can also state that things are unequal to each other. For that, we use the symbol !=
, as shown in the example above.
Give Python two more tasks:
We've seen >
and <
, but what do >=
and <=
mean? Read them like this:
x
>
y means: x is greater than yx
<
y means: x is less than yx
<=
y means: x is less than or equal to yx
>=
y means: x is greater than or equal to y
Awesome! Wanna do one more? Try this:
You can give Python as many numbers to compare as you want, and it will give you an answer! Pretty smart, right?
and – if you use the
and
operator, both comparisons have to be True in order for the whole command to be Trueor – if you use the
or
operator, only one of the comparisons has to be True in order for the whole command to be True
Have you heard of the expression "comparing apples to oranges"? Let's try the Python equivalent:
Here you see that just like in the expression, Python is not able to compare a number (int
) and a string (str
). Instead, it shows a TypeError and tells us the two types can't be compared together.
Boolean
Incidentally, you just learned about a new type of object in Python. It's called Boolean.
There are only two Boolean objects:
True
False
But for Python to understand this, you need to always write it as 'True' (first letter uppercase, with the rest of the letters lowercased). true, TRUE, and tRUE won't work – only True is correct. (The same applies to 'False' as well.)
Booleans can be variables, too! See here:
You can also do it this way:
Practice and have fun with Booleans by trying to run the following commands:
True and True
False and True
True or 1 == 1
1 != 2
Congrats! Booleans are one of the coolest features in programming, and you just learned how to use them!
Save it!
So far we've been writing all our python code in the interpreter, which limits us to entering one line of code at a time. Normal programs are saved in files and executed by our programming language interpreter or compiler. So far we've been running our programs one line at a time in the Python interpreter. We're going to need more than one line of code for the next few tasks, so we'll quickly need to:
Exit the Python interpreter
Open up our code editor of choice
Save some code into a new python file
Run it!
To exit from the Python interpreter that we've been using, type the exit()
function
This will put you back into the command prompt.
Obviously, you're a pretty seasoned Python developer now, so feel free to write some code that you've learned today.
Now we need to save the file and give it a descriptive name. Let's call the file python_intro.py and save it to your desktop. We can name the file anything we want, but the important part here is to make sure the file ends in .py. The .py extension tells our operating system that this is a Python executable file and Python can run it.
Note You should notice one of the coolest thing about code editors: colors! In the Python console, everything was the same color; now you should see that the
def
in a function, which we'll see below). This is one of the reasons we use a code editor. :)
With the file saved, it's time to run it! Using the skills you've learned in the command line section, use the terminal to change directories to the desktop.
On a Mac, the command will look something like this:
On Linux, it will be like this:
(Remember that the word "Desktop" might be translated to your local language.)
On Windows Command Prompt, it will be like this:
And on Windows Powershell, it will be like this:
If you get stuck, ask for help. That's exactly what the coaches are here for!
Now use Python to execute the code in the file like this:
Note: on Windows 'python3' is not recognized as a command. Instead, use 'python' to execute the file:
Alright! You just ran your first Python program that was saved to a file. Feel awesome?
You can now move on to an essential tool in programming:
If … elif … else
Lots of things in code should be executed only when given conditions are met. That's why Python has something called if statements.
Replace the code in your python_intro.py file with this:
If we were to save and run this, we'd see an error like this:
Python expects us to give further instructions to it which are executed if the condition 3 > 2
turns out to be true (or True
for that matter). Let’s try to make Python print “It works!”. Change your code in your python_intro.py file to this:
Notice how we've indented the next line of code by 4 spaces? We need to do this so Python knows what code to run if the result is true. You can do one space, but nearly all Python programmers do 4 to make things look neat. A single Tab will also count as 4 spaces as long as your text editor is set to do so. When you made your choice, don't change it! If you already indented with 4 spaces, make any future indentation with 4 spaces, too - otherwise you may run into problems.
Save it and give it another run:
Note: Remember that on Windows, 'python3' is not recognized as a command. From now on, replace 'python3' with 'python' to execute the file.
What if a condition isn't True?
In previous examples, code was executed only when the conditions were True. But Python also has elif
and else
statements:
When this is run it will print out:
If 2 were a greater number than 5, then the second command would be executed. Let's see how elif
works:
and executed:
See what happened there? elif
lets you add extra conditions that run if the previous conditions fail.
You can add as many elif
statements as you like after your initial if
statement. For example:
Python runs through each test in sequence and prints:
Comments
Comments are lines beginning with #
. You can write whatever you want after the #
and Python will ignore it. Comments can make your code easier for other people to understand.
Let's see how that looks:
You don't need to write a comment for every line of code, but they are useful for explaining why your code is doing something, or providing a summary when it's doing something complex.
Summary
In the last few exercises you learned about:
comparing things – in Python you can compare things by using
>
,>=
,==
,<=
,<
and theand
,or
operatorsBoolean – a type of object that can only have one of two values:
True
orFalse
Saving files – storing code in files so you can execute larger programs.
if … elif … else – statements that allow you to execute code only when certain conditions are met.
comments - lines that Python won't run which let you document your code
Time for the last part of this chapter!
Your own functions!
Remember functions like len()
that you can execute in Python? Well, good news – you will learn how to write your own functions now!
A function is a sequence of instructions that Python should execute. Each function in Python starts with the keyword def
, is given a name, and can have some parameters. Let's give it a go. Replace the code in python_intro.py with the following:
Okay, our first function is ready!
You may wonder why we've written the name of the function at the bottom of the file. When we write def hi():
and the indented lines following, this is us writing instructions for what the hi()
function should do. Python will read and remember these instructions, but won't run the function yet. To tell Python we want to run the function, we have to call the function with hi()
. Python reads the file and executes it from top to bottom, so we have to define the function in the file before we call it.
Let's run this now and see what happens:
Note: if it didn't work, don't panic! The output will help you to figure why:
If you get a
NameError
, that probably means you typed something wrong, so you should check that you used the same name when creating the function withdef hi():
and when calling it withhi()
.If you get an
IndentationError
, check that both of theprint
lines have the same whitespace at the start of a line: python wants all the code inside the function to be neatly aligned.If there's no output at all, check that the last
hi()
isn't indented - if it is, that line will become part of the function too, and it will never get run.
Let's build our first function with parameters. We will change the previous example – a function that says 'hi' to the person running it – with a name:
As you can see, we now gave our function a parameter that we called name
:
Remember: The print
function is indented four spaces within the if
statement. This is because the function runs when the condition is met. Let's see how it works now:
Oops, an error. Luckily, Python gives us a pretty useful error message. It tells us that the function hi()
(the one we defined) has one required argument (called name
) and that we forgot to pass it when calling the function. Let's fix it at the bottom of the file:
And run it again:
And if we change the name?
And run it:
Now, what do you think will happen if you write another name in there? (Not Ola or Sonja.) Give it a try and see if you're right. It should print out this:
This is awesome, right? This way you don't have to repeat yourself every time you want to change the name of the person the function is supposed to greet. And that's exactly why we need functions – you never want to repeat your code!
Let's do something smarter – there are more names than two, and writing a condition for each would be hard, right? Replace the content of your file with the following:
Let's call the code now:
Congratulations! You just learned how to write functions! :)
Loops
This is the last part already. That was quick, right? :)
Programmers don't like to repeat themselves. Programming is all about automating things, so we don't want to greet every person by their name manually, right? That's where loops come in handy.
Still remember lists? Let's do a list of girls:
We want to greet all of them by their name. We have the hi
function to do that, so let's use it in a loop:
The for
statement behaves similarly to the if
statement; code below both of these need to be indented four spaces.
Here is the full code that will be in the file:
And when we run it:
As you can see, everything you put inside a for
statement with an indent will be repeated for every element of the list girls
.
You can also use for
on numbers using the range
function:
Which would print:
``` 1 2 3 4 5 ```
range
is a function that creates a list of numbers following one after the other (these numbers are provided by you as parameters).
Note that the second of these two numbers is not included in the list that is output by Python (meaning range(1, 6)
counts from 1 to 5, but does not include the number 6). That is because "range" is half-open, and by that we mean it includes the first value, but not the last.
Summary
That's it. You totally rock! This was a tricky chapter, so you should feel proud of yourself. We're definitely proud of you for making it this far!
For official and full python tutorial visit https://docs.python.org/3/tutorial/. This will give you a more thorough and complete study of the language. Cheers! :)
You might want to briefly do something else – stretch, walk around for a bit, rest your eyes – before going on to the next chapter. :)
Last updated