5.1. Values and Data Types

Programs may be thought of as being made up of two things:

  1. Data

  2. Operations that manipulate data

This chapter focuses primarily on the first of these two fundamental components, data.

Data can be stored in a program in a variety of ways. The most basic unit of data is a value.

A value is a specific piece of data, such as a word or a number. Some examples are 5, 5.2, and "Hello, World!".

Each value belongs to a category called a data type. We will see many different data types throughout the course, the first two of which are the number and string types. Numeric values such as 4 and 3.3 are numbers. Sequences of characters enclosed in quotes, such as "Hello, World!", are strings, so-called because they contain a string of letters. Strings must be enclosed in either single or double quotes.

If you are not sure what data type a value falls into, you can use type().

Example

1
2
3
print(type("Hello, World!"))
print(type(17))
print(type(3.14))

Console Output

<class 'str'>
<class 'int'>
<class 'float'>

Python reports that the data type of "Hello, World!" is string, while the data types of 17 and 3.14 are int and float, respectively.

Note

Notice that print(type("Hello, World!")) prints out string to the console. The type keyword is not printed to the console because the statement typeof "Hello, World!" is an expression. Briefly, expressions are code segments that are reduced to a value. We will learn more about expressions soon.

We say that an expression returns a value. That is, type("Hello, World!") returns the value string.

There are data types other than strings and numbers, including objects and functions, which we will learn about in future chapters.

5.1.1. More On Strings

What about values like "17" and "3.2"? They look like numbers, but they are in quotation marks like strings.

Run the following code to find out.

Try It!

1
2
print(type("17"))
print(type("3.2"))

Question

What is the data type of the values "17" and "3.2"?

Strings in Python can be enclosed in either single quotes (') or double quotes (").

Example

1
2
print(type('This is a string'))
print(type("And so is this"))

Console Output

<class 'str'>
<class 'str'>

Double-quoted strings can contain single quotes inside them, as in "Bruce's beard", and single quoted strings can have double quotes inside them, as in 'The knights who say "Ni!"'.

Python doesn’t care whether you use single or double quotes to surround your strings. Once it has parsed the text of your program or command, the way it stores the value is identical in all cases, and the surrounding quotes are not part of the value.

Warning

If a string contains a single quote (such as "Bruce's beard") then surrounding it with single quotes gives unexpected results.

What happens if you run the following piece of code?

print('Bruce's beard')

5.1.2. More On Numbers

When you type a large integer value, you might be tempted to use commas between groups of three digits, as in 42,000. This is not a legal integer in Python, but it does mean something else, which is legal:

Example

1
2
print(42000)
print(42,000)

Console Output

42000
42 0

Well, that’s not what we expected at all! Because of the comma, Python chose to treat 42,000 as a pair of values. In fact, the print function can print any number of values as long as you separate them by commas. Notice that the values are separated by spaces when they are displayed.

Example

1
2
print(42, 17, 56, 34, 11, 4.35, 32)
print(3.4, "hello", 45)

Console Output

42 17 56 34 11 4.35 32
3.4 hello 45

Remember not to put commas or spaces in your integers, no matter how big they are. Also revisit what we said in the chapter How Programs Work: programming languages can be strict, the notation is concise, and even the smallest change might mean something quite different from what you intend.

5.1.3. Type Systems

Every programming language has a type system, which is the set of rules that determine how the languages deals with data of different types. In particular, how values are divided up into different data types is one characteristic of a type system.

When discussing the differences between programming languages, the details of type systems are one of the main factors that programmers consider. There are other aspects of type systems beyond just how values are categorized. We will explore these in future lessons.

5.1.4. Check Your Understanding

Question

Which of these is not a data type in Python?

  1. integer

  2. string

  3. letter

  4. object