Show the statements required to complete the following tasks (do NOT write a complete class): Create an array of at least three accounts - at least one of each type (savings and regular) should be in the array. Deposit $10 into each of the accounts. Compute the average of the balances in the accounts. Print the interest amount of each savings account to the screen. Solution Code is written in python 3.5 # creating an array of three account with 1.name, 2.account type, 3. amount in account, 4. interest Accounts = [[\"A\",\"CA\",10,0],[\"B\",\"CA\",10,0],[\"B\",\"RA\",10,0]] Tot = 0 InterestPercentage = 8 #InterestPercentage is taken as 8% per anum NoofAccounts = len(Accounts) for i in range(NoofAccounts): Tot += Accounts[i][2] Accounts[i][3] = (Accounts[i][2]*8)/100 #interese calculation Avg = Tot/NoofAccounts print(\"\ Average amount in all accounts is \",Avg) print(\"\ \") for i in range(NoofAccounts): print(\"Interest in Account Holder: %s is %0.2f\" %( Accounts[i][0],Accounts[i][3])) .