Test your knowledge with free interactive questions on Seneca — used by over 10 million students.

Data Types

Every piece of data that is stored has a type. The type determines how it is stored and what you can do with the data.

Integer

Integer

  • Integers are whole numbers.
    • E.g. 12
    • E.g. 0
    • E.g. -142
Float

Float

  • Floats are fractional numbers.
    • E.g. 0.42
    • E.g. 1.00
String

String

  • Strings are text data.
    • E.g. "Hello, world!"
    • E.g. "07123 456 789"
Boolean

Boolean

  • A True or False value.
  • Examples:
    • True.
    • False.

Casting

Casting is the process of converting data from one type to another.

Reasons for casting

Reasons for casting

  • One of the most common reasons for casting is output.
  • Output must be formatted as a string, and so we may need to convert a certain piece of data to a string.
  • All input also comes as a string, and must then be converted to other data types.
Casting functions

Casting functions

  • Casting to a string can be done using the str function. E.g:
    • str(3) gives "3".
  • Casting to an integer can be done using the int function. E.g:
    • int(3.4) gives 3.
  • Casting to a float can be done using the float function. E.g:
    • float("3.4") gives 3.4.

Type Coercion

Type coercion allows us to operate on data of different types.

Type coercion

Type coercion

  • Usually, attempting to use data of different types in an operation (e.g. adding two numbers of different types) will cause an error.
  • Type coercion allows one of the types to be automatically cast so that the operation can be completed.
Integers and floats

Integers and floats

  • When working with a float and an integer, the final result will become a float.
    • E.g: 3 + 2.5 = 5.5
Strings and integers

Strings and integers

  • Python does not automatically coerce integers to strings when using +.
    • "Number = " + 3
    • TypeError: can only concatenate str (not "int") to str
    • "Number = " + str(3)
Jump to other topics
1

Introduction to Python

2

Data Structures

2.1

Lists & Strings

2.2

File Handling

3

Modularity

3.1

Subroutines

3.2

Data Flow

4

Good Practice

4.1

Naming & Whitespace

4.2

Comments

4.3

Exceptions

Practice questions on Data Types

Can you answer these? Test yourself with free interactive practice on Seneca — used by over 10 million students.

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
Answer all questions on Data Types

Unlock your full potential with Seneca Premium

  • Unlimited access to 10,000+ open-ended exam questions

  • Mini-mock exams based on your study history

  • Unlock 800+ premium courses & e-books

Get started with Seneca Premium