Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
1. Prerequisites
Built-in Functions Common to Most Data Structures
Summary

Instruction

Hello, and welcome to Built-in Algorithms in Python! This course is going to teach you some time- and labor-saving Python functions. We assume that you have completed our preceding courses on Python basics (or have the equivalent knowledge):

  1. The Python Basics series: Parts 1, 2, and 3.
  2. Python Data Structures in Practice.

To work on the exercises in this course, you need to know the following Python basics:

  1. Variable types: strings, integers, floats, booleans.
  2. Data structures: lists, dictionaries, sets, and tuples.
  3. Conditional statements and loops.
  4. How to write your own functions.

If you're not familiar with any of these concepts, take some time to learn about them before you continue. You may find our other courses helpful (check out Python Basics: Part 1, Part 2, and Part 3). But if you're already acquainted with Python, let's get started!

This course focuses on useful built-in algorithms available in Python. In the previous courses, we wrote such functions manually to practice various programming techniques. But the true power of Python lies in its many built-in utility functions – these make our lives easier!

In this course, you'll get to know the most popular Python functions. Are you ready?

Exercise

Click Next exercise to continue.