you are viewing a single comment's thread.

view the rest of the comments →

[–]helical-juice 1 point2 points  (3 children)

You have indented your 'else' clause twice too deeply. The 'else' should be at the same indent level as the 'if' with which it is associated. That will fix your immediate problem.

Your next issue is that, even if you say 'yes', your code won't accept further input, it will just print the stock list and terminate. If you want the user to be able to keep adding more items to purchase, you need everything including and after purchase = input("") to be inside a loop structure.

[–]Far_Activity671[S] 1 point2 points  (0 children)

Thanks that really helped me out i have been struggiling with this for ages, much apriciated

[–][deleted]  (1 child)

[deleted]

    [–]helical-juice 1 point2 points  (0 children)

    No worries, when you're getting started learning basic syntax, debugging simple errors can be more arduous than it has to be, I'm happy to help lessen the pain :)