Book Image

Python Fundamentals

By : Ryan Marvin, Mark Ng’ang’a, Amos Omondi
Book Image

Python Fundamentals

By: Ryan Marvin, Mark Ng’ang’a, Amos Omondi

Overview of this book

<p>After a brief history of Python and key differences between Python 2 and Python 3, you'll understand how Python has been used in applications such as YouTube and Google App Engine. As you work with the language, you'll learn about control statements, delve into controlling program flow and gradually work on more structured programs via functions.</p> <p>As you settle into the Python ecosystem, you'll learn about data structures and study ways to correctly store and represent information. By working through specific examples, you'll learn how Python implements object-oriented programming (OOP) concepts of abstraction, encapsulation of data, inheritance, and polymorphism. You'll be given an overview of how imports, modules, and packages work in Python, how you can handle errors to prevent apps from crashing, as well as file manipulation.</p> <p>By the end of this book, you'll have built up an impressive portfolio of projects and armed yourself with the skills you need to tackle Python projects in the real world.</p>
Table of Contents (12 chapters)
Python Fundamentals
Preface

Set Operations


In this section, we will look at all of the different operations we can perform on a set. Let's begin.

Union

As we stated earlier, a union between sets is the set of all items/elements in both sets.

A union can be represented by the following Venn diagram:

Figure 6.1: Union of sets A and B

For example, if set A = {1,2,3,4,5,6} and set B = {1,2,3,7,8,9,10}, then A u B will be {1,2,3,4,5,6,7,8,9,10}.

To achieve union between sets in Python, we can use the union method, which is defined on set objects:

>>> a = {1,2,3,4,5,6}
>>> b = {1,2,3,7,8,9,10}
>>> a.union(b)
{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
>>> b.union(a)
{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}

Another way to achieve union between sets in Python is to use the | operator:

>>> a = {1,2,3,4,5,6}
>>> b = {1,2,3,7,8,9,10}
>>> a | b
{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}

Intersection

An intersection of sets is the set of all items that appear in all of the sets, that is, what they have in common...