Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Any Global Variables in code below: import sys #account balance account_balance = float(500.25) # # Create a function named 'account_balance' # This function is used

Any Global Variables in code below:

import sys

#account balance account_balance = float(500.25)

#<--------functions go here--------------------> # Create a function named 'account_balance' # This function is used to print the account balance. def account_balance(acc_balance): print("Your current balance: %.2f" %acc_balance)

# Create a function named 'deposit_amount' # This function is used to calcuate the deposit # and display the final balance. def deposit_amount(acc_balance): deposit_amount = float(input("How much would you like to deposit today? ")) balance = acc_balance + deposit_amount print("Deposit was $%.2f, current balance is $%.2f" % (deposit_amount, balance))

# Create a function named 'withdrawal_amount' # This function is used to withdrawal amount from the # balance and displays the final balance. def withdrawal_amount(acc_balance): withdraw_amount = float(input("How much would you like to withdraw today? ")) if withdraw_amount > acc_balance: print("$%.2f is greater than your account balance of $%.2f" % (withdraw_amount, acc_balance)) else: balance = acc_balance - withdraw_amount print("Withdrawal amount was $%.2f, current balance is $%.2f" % (withdraw_amount, balance)) # Opening balance acc_balance = float(500.25)

userchoice = input ("What would you like to do?")

# Create an 'if' statement to check the user input. if (userchoice == 'D'): deposit_amount(acc_balance) elif (userchoice == 'W'): withdrawal_amount(acc_balance) elif (userchoice == 'B'): account_balance(acc_balance) else: print('Thank you for banking with us.')

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Excel As Your Database

Authors: Paul Cornell

1st Edition

1590597516, 978-1590597514

More Books

Students also viewed these Databases questions

Question

6. How do histories influence the process of identity formation?

Answered: 1 week ago

Question

5. Do you have any foreign language proficiency?

Answered: 1 week ago