Budget Analysis (Running Total) Write a program BudgetAnalysis.py) that asks the user to enter the amount of money that he or she has available to spend on electronics this year. A loop should then prompt the user to enter each of his or her expenses for electronics and keep a running total. When the loop finishes, the program should display the total amount that the user spent, and analyse if there is still money to buy more electronics. Here are two test runs of the program: Enter your available amount for electronics in 2020: 1500 Enter your expense (-1 for stop): 340 Enter your expense (-1 for stop): 450 Enter your expense (-1 for stop): -1 So far you spent $ 790.0 You can buy more electronics. >>> ========= RESTART: C: \Users \Rita \Desktop \Lab5-1 B BudgetA Enter your available amount for electronics in 2020: 900 Enter your expense (-1 for stop): 730 Enter your expense (-1 for stop): 290 Enter your expense (-1 for stop): -1 So far you spent $ 1020.0 No more electronics in 2020. please solve in python
Types of Loop
Loops are the elements of programming in which a part of code is repeated a particular number of times. Loop executes the series of statements many times till the conditional statement becomes false.
Loops
Any task which is repeated more than one time is called a loop. Basically, loops can be divided into three types as while, do-while and for loop. There are so many programming languages like C, C++, JAVA, PYTHON, and many more where looping statements can be used for repetitive execution.
While Loop
Loop is a feature in the programming language. It helps us to execute a set of instructions regularly. The block of code executes until some conditions provided within that Loop are true.
Budget Analysis (Running Total)
Write a program BudgetAnalysis.py) that asks the user to enter the amount of money that he or she has available to spend on electronics this year. A loop should then prompt the user to enter each of his or her expenses for electronics and keep a running total. When the loop finishes, the program should display the total amount that the user spent, and analyse if there is still money to buy more electronics.
Here are two test runs of the program:
Enter your available amount for electronics in 2020: 1500
Enter your expense (-1 for stop): 340
Enter your expense (-1 for stop): 450
Enter your expense (-1 for stop):
-1
So far you spent $ 790.0
You can buy more electronics.
>>>
========= RESTART: C: \Users \Rita \Desktop \Lab5-1 B BudgetA
Enter your available amount for electronics in 2020: 900
Enter your expense (-1 for stop): 730
Enter your expense (-1 for stop): 290
Enter your expense (-1 for stop):
-1
So far you spent $ 1020.0
No more electronics in 2020.
please solve in python
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images