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

Chapter 6: Dictionaries and Sets


Activity 23: Creating a Dictionary

Solution:

>>> d = dict()
>>> type(d)
<class 'dict'>

Activity 24: Arranging and Presenting Data Using Dictionaries

Solution:

def sentence_analyzer(sentence):
  solution = {}

  for char in sentence:
    if char is not ' ':
      if char in solution:
        solution[char] += 1
      else:
        solution[char] = 1
        
  return solution

Activity 25: Combining Dictionaries

Solution:

def dictionary_masher(dict_a, dict_b):
  for key, value in dict_b.items():
    if key not in dict_a:
      dict_a[key] = value

  return dict_a

Activity 26: Building a Set

Solution:

The set function can help us create our function:

def set_maker(the_list):
  return set(the_list)

Activity 27: Creating Unions of Elements in a Collection

Solution:

def find_union(list_a, list_b):
  union = []

  for element in list_a + list_b:
    if element not in union:
      union.append(element)
      
  return union