+1 (315) 557-6473 

Work With Modules in Python Assignment Solution.


Instructions

Objective
Write a python assignment program to work with modules in python.

Requirements and Specifications

Prepare 3 different modules with a function in each of them to draw patterns (see the example at the end). Each function will use nested loops and you will call them from the main function to draw respective patterns.
### Function 1
def dollar_at(size):
This function prints,
**@$**
  **@$**
    **@$**
      **@$**
        **@$**
          **@$**
            **@$**
              **@$**
                **@$**
                  **@$**
                    **@$**
### Function 2
def mod_hash(size):
This function prints,
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
 % # % #
### Function 3
def star_dollar(size):
This function prints:
**$****$****$****$****$****$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$****$**
**$****$****$****$****$****$****$**
**$****$****$****$****$****$**
**$****$****$****$****$**
**$****$****$****$**
**$****$****$**
**$****$**
**$**
Parameter "size" in each function is for the number of rows. For example there are 11 rows (lines in the function 1
You must use nested loops to draw each pattern Please follow this example,
Source Code
Program to work with modules in python language
Program to work with modules in python language 1