#Author: Rahma Seid # Course: CSCI 1170 # Assignment: OLA4 # The purpose of this program is d = 'deposit' w 'withdrawal' r= 'repeating Payments' q= 'quit' balance = float (input("Enter starting balance: ")) print("You have a balance of", balance) payment = str(input("Enter d for Deposit, w for Withdrawl, r for Repeating payments, q for quit(d,w,r,q): ")) choice = input(d,w,r,q) if (payment d): deposit ("Enter deposit amount: ") print (f"You deposited ${deposit:.2f}. Your balance is now (balance + deposit:.2f}.") if deposit <0 or deposit > 100: print("Deposit amount must be positive.") print("Enter deposit amount: ") elif (payment == w): withdrawal ("Enter withdrawl amount: ") print (f"You've withdrawn ${withdrawal:.2f}. Your balance is now (balance withdrawal:.2f}.") if withdrawal > balance: print("You do not have sufficient funds. Withdrawal denied!") elif (payment == r): repeating Payments = ("Enter payment amount n/: ") "Enter number of payments: ") elif (payment q): print (f"Your balance is ${balance:.2f}. Have a nice day!") else: == print("You have made an invalid choice.")

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section: Chapter Questions
Problem 9PP
icon
Related questions
Question

Hello. I'm using functions in my python code.

1. My code has to be the same as the output provided to us but I'm not sure how to make the letter choices like d, w, r, and q accepted choices that I can provide in input as there is a type error

2. I also need help with line 37 and 38. How do I make my second question "Enter number of payments:" onto the second line, with the help of n/ or t/?

3. How would I be able to repeat payments until I reach a certain point?

Enter starting balance: 875.25
You have a balance of $875.25
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: d
Enter deposit amount: -50
Deposit amount must be positive. Enter deposit amount: 50
You deposited $50.00. Your balance is now $925.25
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: w
Enter withdrawal amount: 1000
You do not have sufficient funds. Withdrawal denied!
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: w
Enter withdrawal amount: 250.16
You withdrew $250.16. Your balance is now $675.09
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: r
Enter payment amount: 175.97
Enter number of payments: 5
You do not have the funds to cover requested payments. Payments denied!
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: r
Enter payment amount: 125.50
Enter number of payments: 4
Payment 1 for $125.50 made.
Payment 2 for $125.50 made.
Payment 3 for $125.50 made.
Payment 4 for $125.50 made.
Your balance is now $549.59.
Your balance is now $424.09.
Your balance is now $298.59.
Your balance is now $173.09.
Enter d Tor Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: s
You have made an invalid choice.
Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: q
Your balance is $173.09. Have a nice day!
Transcribed Image Text:Enter starting balance: 875.25 You have a balance of $875.25 Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: d Enter deposit amount: -50 Deposit amount must be positive. Enter deposit amount: 50 You deposited $50.00. Your balance is now $925.25 Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: w Enter withdrawal amount: 1000 You do not have sufficient funds. Withdrawal denied! Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: w Enter withdrawal amount: 250.16 You withdrew $250.16. Your balance is now $675.09 Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: r Enter payment amount: 175.97 Enter number of payments: 5 You do not have the funds to cover requested payments. Payments denied! Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: r Enter payment amount: 125.50 Enter number of payments: 4 Payment 1 for $125.50 made. Payment 2 for $125.50 made. Payment 3 for $125.50 made. Payment 4 for $125.50 made. Your balance is now $549.59. Your balance is now $424.09. Your balance is now $298.59. Your balance is now $173.09. Enter d Tor Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: s You have made an invalid choice. Enter d for Deposit, w for Withdrawal, r for Repeating payments, or q to Quit: q Your balance is $173.09. Have a nice day!
# Author: Rahma Seid
2 # Course: CSCI 1170
3 # Assignment: OLA4
# The purpose of this program is
талашин
6
7
8
9 9 = 'quit'
10
11
12 balance = float (input ("Enter starting balance: "))
13
print("You have a balance of", balance)
14
15
d = 'deposit'
W = 'withdrawal'
r = 'repeating_Payments'
16
17 payment = str(input("Enter d for Deposit, w for Withdrawl, r for Repeating payments, q for quit(d,w,r,q): "))
18 choice input(d,w,r,q)
19
20
21 if (payment
22
23
24
25
26
27
28
29 elif (payment
30
31
32
33
34
35
36 elif (payment
37
38
39
40
41 elif (payment
42
43
44
45 46 47
==
d):
deposit = ("Enter deposit amount: ")
print (f"You deposited ${deposit: .2f}. Your balance is now {balance
if deposit <0 or deposit > 100:
print("Deposit amount must be positive.")
print("Enter deposit amount: ")
==
w):
withdrawal = ("Enter withdrawl amount: ")
print (f"You've withdrawn ${withdrawal:.2f}. Your balance is now {balance withdrawal:.2f}.")
if withdrawal > balance:
print("You do not have sufficient funds. Withdrawal denied!")
==
45 else:
repeating_Payments
r):
==
("Enter payment amount n/: ")
"Enter number of payments: ")
q):
print (f"Your balance is ${balance: .2f}. Have a nice day!")
=
+
print("You have made an invalid choice.")
deposit: .2f}.")
Transcribed Image Text:# Author: Rahma Seid 2 # Course: CSCI 1170 3 # Assignment: OLA4 # The purpose of this program is талашин 6 7 8 9 9 = 'quit' 10 11 12 balance = float (input ("Enter starting balance: ")) 13 print("You have a balance of", balance) 14 15 d = 'deposit' W = 'withdrawal' r = 'repeating_Payments' 16 17 payment = str(input("Enter d for Deposit, w for Withdrawl, r for Repeating payments, q for quit(d,w,r,q): ")) 18 choice input(d,w,r,q) 19 20 21 if (payment 22 23 24 25 26 27 28 29 elif (payment 30 31 32 33 34 35 36 elif (payment 37 38 39 40 41 elif (payment 42 43 44 45 46 47 == d): deposit = ("Enter deposit amount: ") print (f"You deposited ${deposit: .2f}. Your balance is now {balance if deposit <0 or deposit > 100: print("Deposit amount must be positive.") print("Enter deposit amount: ") == w): withdrawal = ("Enter withdrawl amount: ") print (f"You've withdrawn ${withdrawal:.2f}. Your balance is now {balance withdrawal:.2f}.") if withdrawal > balance: print("You do not have sufficient funds. Withdrawal denied!") == 45 else: repeating_Payments r): == ("Enter payment amount n/: ") "Enter number of payments: ") q): print (f"Your balance is ${balance: .2f}. Have a nice day!") = + print("You have made an invalid choice.") deposit: .2f}.")
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning