7. Exercises¶
Fill out the
main
function below so that you handle two exceptions that may be raised by your call tosome_function
. If this function raises aValueError
, print “value error happening now”; if this function raises aUnicodeError
, print “unicode error happening now”. Make sure your code can handle both errors. (Note: sincesome_function
isn’t filled out, neither exception will be raised when you run the program.)1def some_function():
2# Imagine code that could raise value or unicode errors
3pass
4
5def main():
6# Put your exception handling code below
7some_function()
8
9if __name__ == "__main__":
10main()
11
Output151def some_function():
2# Imagine code that could raise value or unicode errors
3pass
4
5def main():
6try:
7some_function()
8except UnicodeError:
9print("unicode error happening now")
10except ValueError:
11print("value error happening now")
12
13if __name__ == "__main__":
14main()
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.
Write a function
line(n)
that returns a line with exactlyn
hashes.- Example:
print(line(5))
- Output:
#####
31
2
3
Output131def line(n):
2line_str = ''
3for i in range(n):
4line_str = line_str + '#'
5
6return line_str
7
8def main():
9print(line(5))
10
11if __name__ == "__main__":
12main()
13
OutputWrite a function
square(n)
that returns ann
byn
square of hashes. Utilize yourline
function.- Example:
print(square(5))
Output:
##### ##### ##### ##### #####
31
2
3
Output191def line(n):
2line_str = ''
3for i in range(n):
4line_str = line_str + '#'
5
6return line_str
7
8def square(n):
9square_str = ''
10for i in range(n):
11square_str += (line(n) + '\n')
12return square_str
13
14def main():
15print(square(5))
16
17if __name__ == "__main__":
18main()
19
OutputWrite a function
rectangle(width, height)
that returns a rectangle of the width and height given by the parameters. Again, utilize yourline
function to do this.- Example:
print(rectangle(5, 3))
Output:
##### ##### #####
31
2
3
Output201def line(n):
2line_str = ''
3for i in range(n):
4line_str = line_str + '#'
5
6return line_str
7
8def rectangle(width, height):
9rectangle_str = ''
10for i in range(height):
11rectangle_str += (line(width) + '\n')
12
13return rectangle_str
14
15def main():
16print(rectangle(5, 3))
17
18if __name__ == "__main__":
19main()
20
OutputWrite a function
stairs(n)
that prints the pattern shown below, with heightn
. Again, utilize yourline
function to do this.- Example:
stairs(5))
Output:
# ## ### #### #####
31
2
3
Output201def line(n):
2line_str = ''
3for i in range(n):
4line_str = line_str + '#'
5
6return line_str
7
8def stairs(n):
9stair_str = ''
10for level_len in range(n):
11stair_str += (line(level_len+1) + '\n')
12
13return stair_str
14
15def main():
16print(stairs(5))
17
18if __name__ == "__main__":
19main()
20
OutputWrite 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 #####
31
2
3
Output91def space_line(spaces, hashes):
2return spaces * ' ' + hashes * '#'
3
4def main():
5print(space_line(3, 5))
6
7if __name__ == "__main__":
8main()
9
OutputWrite a function
triangle(n)
that returns an upright triangle of heightn
.- Example:
print(triangle(5))
Output:
# ### ##### ####### #########
31
2
3
Output151def space_line(spaces, hashes):
2return spaces * ' ' + hashes * '#'
3
4def triangle(n):
5triangle_str = ''
6for i in range(n):
7triangle_str += (space_line(n-i-1, 2*i+1) + '\n')
8return triangle_str
9
10def main():
11print(triangle(5))
12
13if __name__ == "__main__":
14main()
15
OutputWrite a function
diamond(n)
that returns a diamond where the triangle formed by the top portion has heightn
. Notice that this means the diamond has2n - 1
rows.- Example:
diamond(5))
Output:
# ### ##### ####### ######### ####### ##### ### #
31
2
3
Output211def space_line(spaces, hashes):
2return spaces * ' ' + hashes * '#'
3
4def triangle(n):
5triangle_str = ''
6for i in range(n):
7triangle_str += (space_line(n-i-1, 2*i+1) + '\n')
8return triangle_str
9
10def diamond(n):
11diamond_str = triangle(n)
12for i in range(n-2, -1, -1):
13diamond_str += (space_line(n-i-1, 2*i+1) + '\n')
14return diamond_str
15
16def main():
17print(diamond(5))
18
19if __name__ == "__main__":
20main()
21
Output