IDNLearn.com connects you with a global community of knowledgeable individuals. Ask your questions and get detailed, reliable answers from our community of experienced experts.
Sagot :
Using the knowledge in computational language in python this code will be described for bank is a dictionary where the key is the username and the value is the user's account balance.
Writing code in python:
def transfer (bank, log_in, userA, userB, amount):
if userA in bank and log_in[userA]:
if userB in log_in:
if amount <= bank [userA]:
bank [userA] -= amount
bank[userB] += amount
return true
return false
bank= {"Bradon": 115.5, "Patrick": 18.9, "Sarah": 827.43, "Jack": 45.0, "James": 128.87}
log_in= {"Bradon": False, "Jack": False, "James": False, "Sarah": False}
transfer(bank, log_in, "Bradon", "Jack", 100)
See more about python at brainly.com/question/18502436
#SPJ1
Thank you for participating in our discussion. We value every contribution. Keep sharing knowledge and helping others find the answers they need. Let's create a dynamic and informative learning environment together. IDNLearn.com provides the best answers to your questions. Thank you for visiting, and come back soon for more helpful information.