Question: Complete the function wide_triangle in the t04_functions.py module. The module t04.py provides simple testing for this function. This function prints right-pointing triangles using the #

Complete the function wide_triangle in the t04_functions.py module. The module t04.py provides simple testing for this function.
This function prints right-pointing triangles using the # character where the widest line has width characters, and each line is either three characters longer than the previous line (up to the widest line) or three characters shorter than the previous line (after the widest line). Some examples from executing t04.py:
wide_triangle(8):
## ##### ######## ##### ##
wide_triangle(9):
### ###### ######### ###### ###
Requirements
This function must:
use for loops
def wide_triangle(width): inu Prints a triangle in which each succeeding line is 3 characters longer than the previous line. Use: wide_triangle(width) Parameters: width - maximum width in characters of triangle (int >=1 ) Returns: None
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
