Skip to main content
Mathematics LibreTexts

17.2.1: Python Iterators

  • Page ID
    82099
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    All programming languages allow for looping. A common form of loop is one in which a series of instructions are executed for each value of some index variable, commonly for values between two integers. Python allows a bit more generality by having structures called “iterators” over which looping can be done. An iterator can be as simple as a list, such as [0,1,2,3], but also can be a power set of a finite set, as we see below, or the keys in a dictionary, which is described in the next section.

    Counting Subsets

    Suppose we want to count the number of subsets of \(\{0,1,2,...,9\}\) that contain no adjacent elements. First, we will define our universe and its power set. The plan will be to define a function that determines whether a subset is "valid" in the sense that it contains no adjacent elements. Then we will iterate over the subsets, counting the valid ones. We know that the number of all subsets will be 2 raised to the number of elements in \(U\text{,}\) which would be \(2^{10}=1024\text{,}\) but let's check.

    U=Set(range(10))
    power_set=U.subsets()
    len(power_set)
    

    The validity check in this case is very simple. For each element, \(k\text{,}\) of a set, \(B\text{,}\) we ask whether its successor, \(k+1\text{,}\) is also in the set. If we never get an answer of "True" then we consider the set valid. This function could be edited to define validity in other ways to answer different counting questions. It's always a good idea to test your functions, so we try two tests, one with a valid set and one with an invalid one.

    def valid(B):
        v=true
        for k in B:
            if k+1 in B:
                v=false
                break
        return v
    [valid(Set([1,3,5,9])),valid(Set([1,2,4,9]))]
    

    Finally we do the counting over our power set, incrementing the count variable with each valid set.

    count=0
    for B in power_set:
        if valid(B):
            count+=1
    count
    

    17.2.1: Python Iterators is shared under a not declared license and was authored, remixed, and/or curated by LibreTexts.

    • Was this article helpful?