Write a complete Python program that prints the following figure as console output.
Use functions to capture the structure of the figure and to eliminate redundancy.
For example, no complete line of output should be printed in two or more places in your code.
Use for
loops to capture repeated patterns of characters within each line of output.
For example, if you see a pattern of five /
characters in a row, use a loop that repeats 5 times to print the character.
Assume the existence of a global constant named SIZE
, not declared by your code, that controls the figure's size.
It should be possible to print figures of different sizes by changing only this constant.
The example outputs shown represent the figure at size 4 and size 6.
Output SIZE
4:
||
||
||
||
__/||\__
__/:::||:::\__
__/::::::||::::::\__
__/:::::::::||:::::::::\__
|""""""""""""""""""""""""|
\_/\/\/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\_/
\_/\/\/\/\/\_/
||
||
||
||
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
|%%||%%|
__/||\__
__/:::||:::\__
__/::::::||::::::\__
__/:::::::::||:::::::::\__
|""""""""""""""""""""""""|
Output SIZE
6:
||
||
||
||
||
||
__/||\__
__/:::||:::\__
__/::::::||::::::\__
__/:::::::::||:::::::::\__
__/::::::::::::||::::::::::::\__
__/:::::::::::::::||:::::::::::::::\__
|""""""""""""""""""""""""""""""""""""|
\_/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\/\/\_/
\_/\/\/\/\/\/\/\_/
||
||
||
||
||
||
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
|%%%%||%%%%|
__/||\__
__/:::||:::\__
__/::::::||::::::\__
__/:::::::::||:::::::::\__
__/::::::::::::||::::::::::::\__
__/:::::::::::::::||:::::::::::::::\__
|""""""""""""""""""""""""""""""""""""|