Design a program that asks the user to enter the amount that he or she has budgeted for a month. A loop should then prompt the user to enter each of their expenses for the month, and keep a running total. When the loop finishes, the program should display the amount that the user is over budget.
Please provide answer in Pseudocode as well as python language. Please write line numbers before each line of the algorithm, include blank numbered lines between modules and write comments. Here are some parameters to solve the problem. a. Your Main module should declare two local variables and call three other modules.b. Create a module to get the amount budgeted for the month from the software user. c. Create a module that uses a loop to ask the software user for the price of each item purchased that month. The loop should stop when the software user does not reply with a lower case y to continue entering prices. make sure this loop has two lines.The loop should also contain an accumulator formula to report the grand total of the purchases.d.The last module should use an if/else/if statement that compares the budgeted amount to the grant total spent. If spent and budgeted equal the same, it should state,“perfect planning”, if spent is higher than budgeted, it should state,“poor planning”, if spent is less than budgeted, it should state,“great job”.