String Practice Problem Complete the following program: In Python a) Read in and store the data from the file called"January.txt". This file includes the customer's account number,beginning balance, withdrawals, and deposits. (In that order) Note:Make sure you look at the file before you begin the project! b) Prompt the user for his/her name and age. c) Convert the customer's name to a username that consists ofthe first letter of the first name, the first 5 digits of lastname, and the customer's age.(All letters should be lowercase)Example: Michael Jordan, age 37 should convert to: mjorda37 d) Convert the account number to the following format:XXX-XX-XXX e) Calculate the total of the deposits, the total of thewithdrawals, and the ending balance in the account. f) Write a report similar to the following to both thescreen and a file called "January statement.txt": Broward College National Bank January Bank Statement Name UserName Account Number -------------------------------------------------------------------- Michael Jordan mjorda37 217-28-392 Beginning Balance: $1200.56 Total Withdrawals: $339.18 Total Deposits: $530.29 Ending Balance: $1391.67 Save the file as lastname_statement.py and upload the .py file here.
String Practice Problem
Complete the following
a) Read in and store the data from the file called"January.txt". This file includes the customer's account number,beginning balance, withdrawals, and deposits. (In that order) Note:Make sure you look at the file before you begin the project!
b) Prompt the user for his/her name and age.
c) Convert the customer's name to a username that consists ofthe first letter of the first name, the first 5 digits of lastname, and the customer's age.(All letters should be lowercase)Example: Michael Jordan, age 37 should convert to: mjorda37
d) Convert the account number to the following format:XXX-XX-XXX
e) Calculate the total of the deposits, the total of thewithdrawals, and the ending balance in the account.
f) Write a report similar to the following to both thescreen and a file called "January statement.txt":
Broward College National Bank
January Bank Statement
Name UserName Account Number
--------------------------------------------------------------------
Michael Jordan mjorda37 217-28-392
Beginning Balance: $1200.56
Total Withdrawals: $339.18
Total Deposits: $530.29
Ending Balance: $1391.67
Save the file as lastname_statement.py and upload the .py file here.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images