×
   ❮   
PYTHON FOR DJANGO DJANGO FOR BEGINNERS DJANGO SPECIFICS Roadmap
     ❯   

VARIABLES & TYPES IN PYTHON

Sequence type

Understanding Python Sequence Types

Introduction

In Python, sequence types are used to store collections of elements in a specific order. These sequences can be either mutable (modifiable) or immutable (non-modifiable). The most common sequence types in Python are list, tuple, and range. Each of these types has distinct characteristics and use cases, making them essential for various programming tasks.

Sequence Types in Python

1. list

The list type in Python is a mutable, ordered collection of elements. This means that you can change the contents of a list after it has been created. Lists are incredibly versatile and can store elements of different data types, including integers, floats, strings, and even other lists.

Example:

my_list = [1, 2, 3, 4, 5]

In this example, my_list is a list containing the elements 1, 2, 3, 4, and 5. Lists are created using square brackets [], and elements are separated by commas.

Common Operations on Lists:

  • append(): Adds an element to the end of the list.
  • remove(): Removes the first occurrence of a specified element from the list.
  • slice: Retrieves a portion of the list using index ranges.

Example:

my_list.append(6)  # my_list is now [1, 2, 3, 4, 5, 6]
my_list.remove(3)  # my_list is now [1, 2, 4, 5, 6]
sub_list = my_list[1:4]  # sub_list is [2, 4, 5]

In this example, the append() method adds the number 6 to the end of my_list. The remove() method removes the first occurrence of 3 from the list. The slice operation my_list[1:4] retrieves a portion of the list, creating a new list sub_list containing elements from index 1 to 3.

2. tuple

The tuple type in Python is an immutable, ordered collection of elements. Once a tuple is created, its contents cannot be modified. Tuples are similar to lists, but their immutability makes them useful for storing data that should not be changed throughout the program's execution.

Example:

my_tuple = (1, 2, 3, 4)

Here, my_tuple is a tuple containing the elements 1, 2, 3, and 4. Tuples are created using parentheses (), and elements are separated by commas.

Since tuples are immutable, you cannot use methods like append() or remove() with them. However, you can access elements using indexing and slicing, similar to lists.

Example:

first_element = my_tuple[0]  # first_element is 1
sub_tuple = my_tuple[1:3]  # sub_tuple is (2, 3)

In this example, the first element of my_tuple is accessed using the index 0, and a slice operation my_tuple[1:3] creates a new tuple sub_tuple containing elements from index 1 to 2.

3. range

The range() function is a powerful and versatile tool in Python, particularly useful for generating sequences of numbers. While it's commonly used in for loops, the range() function has additional capabilities and options that make it a fundamental part of Python programming. Let's explore its various forms and usage scenarios in detail.

Basic Syntax of range()

The range() function can be used in three different ways, depending on the number of arguments passed to it:

  1. range(stop)
  2. range(start, stop)
  3. range(start, stop, step)

1. range(stop)

When only one argument is provided, range(stop) generates a sequence of numbers starting from 0 and ending at stop - 1.

Example:

for i in range(5):
    print(i)

Output:

0
1
2
3
4

In this case, the sequence starts at 0 and ends at 4.

2. range(start, stop)

When two arguments are provided, range(start, stop) generates a sequence of numbers starting from start and ending at stop - 1.

Example:

for i in range(2, 7):
    print(i)

Output:

2
3
4
5
6

Here, the sequence starts at 2 and ends at 6.

3. range(start, stop, step)

When three arguments are provided, range(start, stop, step) generates a sequence of numbers starting from start, incrementing by step, and ending before stop.

Example:

for i in range(1, 10, 2):
    print(i)

Output:

1
3
5
7
9

In this example, the sequence starts at 1 and increments by 2 until it reaches 9.

Negative Steps in range()

The step argument in range() can also be negative, allowing you to generate a sequence in descending order.

Example:

for i in range(10, 0, -2):
    print(i)

Output:

10
8
6
4
2

In this case, the sequence starts at 10 and decrements by 2 until it reaches 2.

Using range() with len()

The range() function is often combined with the len() function to iterate over the indices of a list or other sequence types.

Example:

my_list = ['a', 'b', 'c', 'd']

for i in range(len(my_list)):
    print(f"Index {i}: {my_list[i]}")

Output:

Index 0: a
Index 1: b
Index 2: c
Index 3: d

This example demonstrates how range() can be used to iterate over a list's indices, allowing you to access both the index and the corresponding element.

Converting a range to a List

Although range() generates numbers on demand and does not store them in memory, you can convert a range object into a list if needed.

Example:

my_range = range(5)
my_list = list(my_range)
print(my_list)

Output:

[0, 1, 2, 3, 4]

In this example, the range object my_range is converted into a list my_list containing the numbers from 0 to 4.