7. Exercises

  1. Fill out the main function below so that you handle two exceptions that may be raised by your call to some_function. If this function raises a ValueError, print “value error happening now”; if this function raises a UnicodeError, print “unicode error happening now”. Make sure your code can handle both errors. (Note: since some_function isn’t filled out, neither exception will be raised when you run the program.)

     
    1
    def some_function():
    2
        # Imagine code that could raise value or unicode errors
    3
        pass
    4
    5
    def main():
    6
        # Put your exception handling code below
    7
        some_function()
    8
    9
    if __name__ == "__main__":
    10
        main()
    11
    Output
    15
     
    1
    def some_function():
    2
        # Imagine code that could raise value or unicode errors
    3
        pass
    4
    5
    def main():
    6
        try:
    7
            some_function()
    8
        except UnicodeError:
    9
            print("unicode error happening now")
    10
        except ValueError:
    11
            print("value error happening now")
    12
    13
    if __name__ == "__main__":
    14
        main()
    15
    Output

These next several problems are variations on a theme. Each will have you return a string that consists of a shape built out of # (hash) characters. It is left up to you to add the code you would need to run your functions (i.e., adding a main function and calling the respective function). These problems build in difficulty, and are examples in how solving smaller problems can lead you to incrementally build the solutions to larger problems.

  1. Write a function line(n) that returns a line with exactly n hashes.

    Example:

    print(line(5))

    Output:

    #####

    3
     
    1
    2
    3
    Output
    13
     
    1
    def line(n):
    2
        line_str = ''
    3
        for i in range(n):
    4
            line_str = line_str + '#'
    5
    6
        return line_str
    7
    8
    def main():
    9
        print(line(5))
    10
    11
    if __name__ == "__main__":
    12
        main()
    13
    Output
  2. Write a function square(n) that returns an n by n square of hashes. Utilize your line function.

    Example:

    print(square(5))

    Output:

    #####
    #####
    #####
    #####
    #####
    
    3
     
    1
    2
    3
    Output
    19
     
    1
    def line(n):
    2
        line_str = ''
    3
        for i in range(n):
    4
            line_str = line_str + '#'
    5
    6
        return line_str
    7
    8
    def square(n):
    9
        square_str = ''
    10
        for i in range(n):
    11
            square_str += (line(n) + '\n')
    12
        return square_str
    13
    14
    def main():
    15
        print(square(5))
    16
    17
    if __name__ == "__main__":
    18
        main()
    19
    Output
  3. Write a function rectangle(width, height) that returns a rectangle of the width and height given by the parameters. Again, utilize your line function to do this.

    Example:

    print(rectangle(5, 3))

    Output:

    #####
    #####
    #####
    
    3
     
    1
    2
    3
    Output
    20
     
    1
    def line(n):
    2
        line_str = ''
    3
        for i in range(n):
    4
            line_str = line_str + '#'
    5
    6
        return line_str
    7
    8
    def rectangle(width, height):
    9
        rectangle_str = ''
    10
        for i in range(height):
    11
            rectangle_str += (line(width) + '\n')
    12
    13
        return rectangle_str
    14
    15
    def main():
    16
        print(rectangle(5, 3))
    17
    18
    if __name__ == "__main__":
    19
        main()
    20
    Output
  4. Write a function stairs(n) that prints the pattern shown below, with height n. Again, utilize your line function to do this.

    Example:

    stairs(5))

    Output:

    #
    ##
    ###
    ####
    #####
    
    3
     
    1
    2
    3
    Output
    20
     
    1
    def line(n):
    2
        line_str = ''
    3
        for i in range(n):
    4
            line_str = line_str + '#'
    5
    6
        return line_str
    7
    8
    def stairs(n):
    9
        stair_str = ''
    10
        for level_len in range(n):
    11
            stair_str += (line(level_len+1) + '\n')
    12
    13
        return stair_str
    14
    15
    def main():
    16
        print(stairs(5))
    17
    18
    if __name__ == "__main__":
    19
        main()
    20
    Output
  5. Write a function space_line(spaces, hashes) that returns a line with exactly the specified number of spaces, followed by the specified number of hashes.

    Example:

    print(space_line(3,5))

    Output:

    #This is where the edge is, so there's 3 spaces before hashes
       #####
    
    3
     
    1
    2
    3
    Output
    9
     
    1
    def space_line(spaces, hashes):
    2
        return spaces * ' ' + hashes * '#'
    3
    4
    def main():
    5
        print(space_line(3, 5))
    6
    7
    if __name__ == "__main__":
    8
        main()
    9
    Output
  6. Write a function triangle(n) that returns an upright triangle of height n.

    Example:

    print(triangle(5))

    Output:

        #
       ###
      #####
     #######
    #########
    
    3
     
    1
    2
    3
    Output
    15
     
    1
    def space_line(spaces, hashes):
    2
        return spaces * ' ' + hashes * '#'
    3
    4
    def triangle(n):
    5
        triangle_str = ''
    6
        for i in range(n):
    7
            triangle_str += (space_line(n-i-1, 2*i+1) + '\n')
    8
        return triangle_str
    9
    10
    def main():
    11
        print(triangle(5))
    12
    13
    if __name__ == "__main__":
    14
        main()
    15
    Output
  7. Write a function diamond(n) that returns a diamond where the triangle formed by the top portion has height n. Notice that this means the diamond has 2n - 1 rows.

    Example:

    diamond(5))

    Output:

        #
       ###
      #####
     #######
    #########
     #######
      #####
       ###
        #
    
    3
     
    1
    2
    3
    Output
    21
     
    1
    def space_line(spaces, hashes):
    2
        return spaces * ' ' + hashes * '#'
    3
    4
    def triangle(n):
    5
        triangle_str = ''
    6
        for i in range(n):
    7
            triangle_str += (space_line(n-i-1, 2*i+1) + '\n')
    8
        return triangle_str
    9
    10
    def diamond(n):
    11
        diamond_str = triangle(n)
    12
        for i in range(n-2, -1, -1):
    13
            diamond_str += (space_line(n-i-1, 2*i+1) + '\n')
    14
        return diamond_str
    15
    16
    def main():
    17
        print(diamond(5))
    18
    19
    if __name__ == "__main__":
    20
        main()
    21
    Output