Strings and Text

While you have been writing strings, you still do not know what they do. In this exercise we create a bunch of variables with complex strings so you can see what they are for. First an explanation of strings.

A string is usually a bit of text you want to display to someone, or "export" out of the program you are writing. Python knows you want something to be a string when you put either " (double-quotes) or ' (single-quotes) around the text. You saw this many times with your use of print when you put the text you want to go inside the string inside " or ' after the print to print the string.

Strings may contain the format characters you have discovered so far. You simply put the formatted variables in the string, and then a % (percent) character, followed by the variable. The only catch is that if you want multiple formats in your string to print multiple variables, you need to put them inside ( ) (parenthesis) separated by , (commas). It's as if you were telling me to buy you a list of items from the store and you said, "I want milk, eggs, bread, and soup." Only as a programmer we say, "(milk, eggs, bread, soup)."

We will now type in a whole bunch of strings, variables, and formats, and print them. You will also practice using short abbreviated variable names. Programmers love saving time at your expense by using annoyingly short and cryptic variable names, so let's get you started reading and writing them early on.

What You Should See

$ python ex6.py
There are 10 types of people.
Those who know binary and those who don't.
I said: 'There are 10 types of people.'.
I also said: 'Those who know binary and those who don't.'.
Isn't that joke so funny?! False
This is the left side of...a string with a right side.

Study Drills

  1. Go through this program and write a comment above each line explaining it.

  2. Find all the places where a string is put inside a string. There are four places.

  3. Are you sure there are only four places? How do you know? Maybe I like lying.

  4. Explain why adding the two strings w and e with + makes a longer string.

Common Student Questions

What is the difference between %r and %s?Use the %r for debugging, since it displays the "raw" data of the variable, but the others are used for displaying to users.What's the point of %s and %d when you can just use %r?The %r is best for debugging, and the other formats are for actually displaying variables to users.I get the error TypeError: not all arguments converted during string formatting.You need to make sure that the line of code is exactly the same. What happens in this error is you have more % format characters in the string than variables to put in them. Go back and figure out what you did wrong.Why do you put ' (single-quotes) around some strings and not others?Mostly it's because of style, but I'll use a single-quote inside a string that has double-quotes. Look at line 10 to see how I'm doing that.If you thought the joke was funny could you write hilarious = True?Yes, and you'll learn more about these boolean values in Exercise 27.

Last updated