Create a github account and a repo called "Lab-1." Invite me as a collaborator to your repo. Download the repo files here as a zip file. Unzip the files and add them to your repo. Modify the files as appropriate according to the instructions. Do not change names. Commit and push changes to your repo.
Do not change any of the code given to you. I will run your code with the expected structure. If you make changes, your solutions will not run and you will receive no credit for that problem. All solutions should include a docstring description. Unless otherwise specified, all functions should end with a return of the appropriate type and not a print statement.
Define a function that takes the two parameters width and length of a rectangle and prints its area. Check if your function works correctly by passing 2 and 10 as its arguments. Run your code on your own machine. Do not include this check in your program.
Define a function that takes two parameters for radius and height of a cylinder and prints its volume. Check if your function works correctly by passing 10 and 30 as its arguments. (Feel free to look up how to compute the volume of a cylinder--such domain expertise should be freely googled if needed).
Define a function that first calculates the area of a circle and another than returns the area of a square. Then, using these functions, create a third that computes the area between a square and an inscribed circle.
Define a function that consumes the number of pennies, nickels, dimes, and quarters and returns the amount of money (in dollars). Define a second function which takes in an amount paid and an amount owed and returns the amount due to the customer.
Define a function that takes time, temp, and ratio and calculates and prints the result of the following formula:
Define a function that takes height (in inches) and weight (in pounds) and calculates the body mass index (BMI).