Issue with Project No. 3 of Scientific Computing with Python

While solving the third project of Scientific Computing with Python, it is giving spacing issues. I have tried looking at my code but I have not been able to find anything. Can anyone help me with this?

You can check my code at: https://repl.it/@VikhyatSharma17/boilerplate-budget-app

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36.

Challenge: Budget App

Link to the challenge:

After copying test output out of repl.it it’s a bit easier to see what is wrong:

- 100|         
+ 100|          
?              +
-  90|         
+  90|          
?              +
-  80|         
+  80|          
?              +
-  70|    o    
+  70|    o     
?              +
-  60|    o    
+  60|    o     
?              +
-  50|    o    
+  50|    o     
?              +
-  40|    o    
+  40|    o     
?              +
-  30|    o    
+  30|    o     
?              +
-  20|    o  o 
+  20|    o  o  
?              +
-  10|    o  o 
+  10|    o  o  
?              +
-   0| o  o  o 
+   0| o  o  o  
?              +
      ----------
       B  F  E  
       u  o  n  
       s  o  t  
       i  d  e  
       n     r  
       e     t  
       s     a  
       s     i  
             n  
             m  
             e  
             n  
-            t  
?               -
+            t   : Expected different chart representation. Check that all spacing is exact.

Can you help in understanding this output? Like which one is my output and what is this ‘?’ mark?
Thanks in advance.

- indicates line from the function output, + is the expected output, ? indicates line pointing where exactly is the difference.

Thanks @sanity
Knowing how the output is displayed helped a lot.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.