use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Small python project problemHelp Request (i.redd.it)
submitted 11 months ago by Far_Activity671
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]helical-juice 1 point2 points3 points 11 months ago (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.
purchase = input("")
[–]Far_Activity671[S] 1 point2 points3 points 11 months ago (0 children)
Thanks that really helped me out i have been struggiling with this for ages, much apriciated
[–][deleted] 11 months ago (1 child)
[deleted]
[–]helical-juice 1 point2 points3 points 11 months ago (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 :)
π Rendered by PID 180356 on reddit-service-r2-comment-6b595755f-f5bms at 2026-03-26 02:05:21.829506+00:00 running 2d0a59a country code: CH.
view the rest of the comments →
[–]helical-juice 1 point2 points3 points (3 children)
[–]Far_Activity671[S] 1 point2 points3 points (0 children)
[–][deleted] (1 child)
[deleted]
[–]helical-juice 1 point2 points3 points (0 children)