0

Help me with the last error

You are given a (small) check book as a - sometimes - cluttered (by non-alphanumeric characters) string: "1000.00 125 Market 125.45 126 Hardware 34.95 127 Video 7.45 128 Book 14.32 129 Gasoline 16.10" The first line shows the original balance. Each other line (when not blank) gives information: check number, category, check amount. (Input form may change depending on the language). First you have to clean the lines keeping only letters, digits, dots and spaces. Then return a report as a string (underscores show spaces -- don't put them in your solution. They are there so you can see them and how many of them you need to have): "Original_Balance:_1000.00 125_Market_125.45_Balance_874.55 126_Hardware_34.95_Balance_839.60 127_Video_7.45_Balance_832.15 128_Book_14.32_Balance_817.83 129_Gasoline_16.10_Balance_801.73 Total_expense__198.27 Average_expense__39.65" On each line of the report you have to add the new balance and then in the last two lines the total expense and the average expense. So as not to have a too long result string we don't ask for a properly formatted result. Notes See input examples in Sample Tests. It may happen that one (or more) line(s) is (are) blank. Round to 2 decimals your results. The line separator of results may depend on the language \n or \r\n. See examples in the "Sample tests". R language: Don't use R's base function "mean()" that could give results slightly different from expected ones. /\ Instructions are up there | https://www.codewars.com/kata/59d727d40e8c9dd2dd00009f/train/JUMP_LINK__&&__python__&&__JUMP_LINK /\ Here's where you can check ur code | And here's my code : def balance(book): for i in book: for num in '!=>,<;:}{}?': if i == num: book = book.replace(i, '') spl = book.split('\n') bal = spl[0] arr = ['Original Balance: ' + bal] for el in spl[1:-1]: if el != '':

15th Jul 2021, 6:23 PM
Ailana
Ailana - avatar
1 Réponse
+ 1
15th Jul 2021, 7:20 PM
Shadoff
Shadoff - avatar