Python ProgrammingAssignment 0402: Human Pyramid
A human pyramid is a way of stacking people vertically in a triangle. With the exception of the people inthe bottom row, each person splits their weight evenly on the two peoplebelow them in the pyramid. For example, in the pyramid above, person Asplits her weight across people B and C, and person H splits his weight –plus the accumulated weight of the people he issupporting –onto people L and M. It can be mighty uncomfortable to be in the bottom row, since you'll have a lot of weight on your back! In this assignment, you willexplore just how much weight that is.Let us assume that everyone in the pyramid weighs exactly 128pounds.
Write a recursive function–def humanPyramid(row, column):–that takes as input the row and column number of a person in a human pyramid, then returns the total weight on that person's back. The row and column are each zero-indexed, so the person at row 0, column 0 is on top of the pyramid, and person M in the above picture is at row 4, column 2.
Your implementation of humanPyramid must be implemented recursively and must not use any loops. You may be surprised how little code is required!
Record a three minute video in which you run the code. Then, present your code. Specifically, answer the following questions:
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme