Python Programming/Variables and Strings
In this section, you will be introduced to two different kinds of data in Python: variables and strings. Please follow along by running the included programs and examining their output.
Contents |
[edit] Variables
A variable is something with a value that may change. In simplest terms, a variable is just a box that you can put stuff in. You can use variables to store all kinds of stuff, but for now, we are just going to look at storing numbers in variables. Here is a program that uses a variable that holds a number:
lucky = 7 print (lucky) 7
In this program, we created a variable called lucky
, and assigned to it the value of the integer number 7
. Then, we just asked Python to tell us what was stored in the variable lucky
, and it did.
In addition to putting things into variables, we can also change what is inside a variable. For example:
changing = 3 print (changing) 3 changing = 9 print (changing) 9 different = 12 print (different) 12 print (changing) 9 changing = 15 print (changing) 15
In this program, we declared a variable called changing
, put (using the assignment symbol =
) the number 3
in it, and asked Python to tell us what was in the changing
variable. Then, we put the number 9
into the changing
variable, and asked Python what was in changing
now. Python throws away the 3
, and replaces it with the 9
, and so it tells us that 9
is currently in changing
. Next, we created a second variable, called different
, and put 12
into it. We then ask Python what is in different
and changing
, and it tells us 12
and 9
, respectively. As you can see, changing one variable does not make any changes in a different variable. However, when we change changing
once again, from 9
to 15
, it once again gets rid of the old number and puts in the new one, and it tells us that changing
is now holding 15
.
You can also assign the value of a variable to be the value of another variable. For example:
red = 5 blue = 10 print (red, blue) 5 10 yellow = red print (yellow, red, blue) 5 5 10 red = blue print (yellow, red, blue) 5 10 10
This program is more complicated. Just keep in mind that we always have the name of the variable on the left side of the equals sign (the assignment operator), and the value of the variable on the right side of the equals sign. First the name, then the value.
We start out declaring that red
is 5
, and blue
is 10
. As you can see, you can use commas in the print statement to tell it to print multiple things at the same time, separated by a space. When asked, Python confirms that red
is equal to 5
, and blue
is equal to 10
.
Now we create a third variable, called yellow
. To set its value, we tell Python that we want yellow
to be whatever red
is. (Remember: name to the left, value to the right.) Python knows that red
is 5
, so it also sets yellow
to be 5
. When we ask Python to tell us what the variables are, it confirms that yellow
is 5
, red
is 5
, and blue
is still 10
.
Now we're going to take the red
variable, and set it to the value of the blue
variable. Don't get confused — name on the left, value on the right. Python looks up to see what the value of the blue
variable is, and remembers that it's 10
. So, Python throws away red
's old value (5
), and replaces it with blue
's value. When we ask Python what's going on, it says that yellow
is 5
, red
is 10
, and blue
is 10
.
But didn't we say that yellow
should be whatever value red
is? The reason that yellow
is still 5
when red
is 10
, is because we only said that yellow
should be whatever red
is at that instant that we told it to. Once we have figured out what red
is and set that value to yellow
, then yellow
doesn't care about red
any more. yellow
has a value now, and that value is going to stay the same no matter what happens to red
.
That's all you need to know about variables right now, but we'll get back to them in a minute. Just keep in mind: whenever you're declaring variables or changing their values, you always have the name of the variable you're working with to the left of the equals sign (the assignment operator), and the value you're setting it to on the right.
[edit] Strings
A string is simply a list of characters in order. A character is anything you can type on the keyboard in one keystroke, like a letter, a number, or a backslash. For example, "hello
" is a string. It is five characters long — h
, e
, l
, l
, o
. Strings can also have spaces: "hello world
" contains 11 characters, including the space between "hello
" and "world
". There are no limits to the number of characters you can have in a string — you can have anywhere from one to a million or more. You can even have a string that has 0 characters, which is usually called "the empty string."
There are three ways you can declare a string in Python: single quotes ('
), double quotes ("
), and triple quotes ("""
). In all cases, you start and end the string with your chosen string declaration. For example:
>>> print ('I am a single quoted string') I am a single quoted string >>> print ("I am a double quoted string") I am a double quoted string >>> print ("""I am a triple quoted string""") I am a triple quoted string
You can use quotation marks within strings by placing a backslash directly before them, so that Python knows you want to include the quotation marks in the string, instead of ending the string there. Placing a backslash directly before another symbol like this is known as escaping the symbol. Note that if you want to put a backslash into the string, you also have to escape the backslash, to tell Python that you want to include the backslash, rather than using it as an escape character.
>>> print ("So I said, \"You don't know me! You'll never understand me!\"") So I said, "You don't know me! You'll never understand me!" >>> print ('So I said, "You don\'t know me! You\'ll never understand me!"') So I said, "You don't know me! You'll never understand me!" >>> print ("This will result in only three backslashes: \\ \\ \\") This will result in only three backslashes: \ \ \ >>> print ("""The double quotation mark (\") is used to indicate direct quotations.""") The double quotation mark (") is used to indicate direct quotations.
As you can see from the above examples, only the specific character used to quote the string needs to be escaped. This makes for more readable code.
To see how to use strings, let's go back for a moment to an old, familiar program:
>>> print("Hello, world!") Hello, world!
Look at that! You've been using strings since the beginning! You can also add two strings together using the +
operator: this is called concatenating them.
>>> print ("Hello, " + "world!") Hello, world!
Notice that there is a space at the end of the first string. If you don't put that in, the two words will run together, and you'll end up with Hello,world!
You can also repeat strings by using the *
operator, like so:
>>> print ("bouncy, " * 10) bouncy, bouncy, bouncy, bouncy, bouncy, bouncy, bouncy, bouncy, bouncy, bouncy,
If you want to find out how long a string is, we use the len()
function, which simply takes a string and counts the number of characters in it. (len
stands for "length.") Just put the string that you want to find the length of, inside the parentheses of the function. For example:
>>> print (len("Hello, world!")) 13
[edit] Strings and Variables
Now that you've learned about variables and strings separately, let's see how they work together.
Variables can store much more than just numbers. You can also use them to store strings! Here's how:
question = "What did you have for lunch?" print (question)
In this program, we are creating a variable called question
, and storing the string "What did you have for lunch?
" in it. Then, we just tell Python to print out whatever is inside the question
variable. Notice that when we tell Python to print out question
, there are no quotation marks around the word question
: this is to signify that we are using a variable, instead of a string. If we put in quotation marks around question
, Python would treat it as a string, and simply print out question
instead of What did you have for lunch?
.
Let's try something different. Sure, it's all fine and dandy to ask the user what they had for lunch, but it doesn't make much difference if they can't respond! Let's edit this program so that the user can type in what they ate.
question = "What did you have for lunch?" print (question) answer = raw_input() print ("You had " + answer + "! That sounds delicious!")
To ask the user to write something, we used a function called raw_input()
, which waits until the user writes something and presses enter, and then returns what the user wrote. Don't forget the parentheses! Even though there's nothing inside of them, they're still important, and Python will give you an error if you don't put them in. You can also use a different function called input()
, which works in nearly the same way. We will learn the differences between these two functions later.
In this program, we created a variable called answer
, and put whatever the user wrote into it. Then, we print out a new string, which contains whatever the user wrote. Notice the extra space at the end of the "You had
" string, and the exclamation mark at the start of the "! That sounds delicious!
" string. They help format the output and make it look nice, so that the strings don't all run together.
[edit] Combining Numbers and Strings
Take a look at this program, and see if you can figure out what it's supposed to do.
print ("Please give me a number: ",) number = raw_input() plusTen = number + 10 print ("If we add 10 to your number, we get " + plusTen)
This program should take a number from the user, add 10 to it, and print out the result. But if you try running it, it won't work! You'll get an error that looks like this:
Traceback (most recent call last): File "test.py", line 7, in <module> print "If we add 10 to your number, we get " + plusTen TypeError: cannot concatenate 'str' and 'int' objects
What's going on here? Python is telling us that there is a TypeError
, which means there is a problem with the types of information being used. Specifically, Python can't figure out how to reconcile the two types of data that are being used simultaneously: integers and strings. For example, Python thinks that the number
variable is holding a string, instead of a number. If the user enters 15
, then number
will contain a string that is two characters long: a 1
, followed by a 5
. So how can we tell Python that 15
should be a number, instead of a string?
Also, when printing out the answer, we are telling Python to concatenate together a string ("If we add 10 to your number, we get
") and a number (plusTen
). Python doesn't know how to do that -- it can only concatenate strings together. How do we tell Python to treat a number as a string, so that we can print it out with another string?
Luckily, there are two functions that are perfect solutions for these problems. The int()
function will take a string and turn it into an integer, while the str()
function will take an integer and turn it into a string. In both cases, we put what we want to change inside the parentheses. Therefore, our modified program will look like this:
print ("Please give me a number:",) response = raw_input() number = int(response) plusTen = number + 10 print ("If we add 10 to your number, we get " + str(plusTen))
That's all you need to know about strings and variables! We'll learn more about types later.
[edit] List of Learned Functions
print()
: Prints its parameter to the console.input()
orraw_input()
: asks the user for a response, and returns that responselen()
: returns the length of a string (number of characters)str()
: turns an object into a stringint()
: turns an object into an integer
[edit] Exercises
- Write a program that asks the user to type in a string, and then tells the user how long that string was.
- Ask the user for a string, and then for a number. Print out that string, that many times. (For example, if the string is
hello
and the number is3
you should print outhellohellohello
.) - What would happen if a mischievous user typed in a word when you ask for a number? Try it.