Python Forum
Dictionary/List Homework - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Dictionary/List Homework (/thread-14682.html)

Pages: 1 2 3


RE: Dictionary/List Homework - ImLearningPython - Dec-14-2018

Getting rid of those lines and adding in what you have said, still leaves me with the over all issue of inside loop repeating indefinitely. Getting the loop to print with a couple different methods has all worked, getting the loops to stop has not.

Okay, so I added break to the end of the inside loops and it will now stop. I am still not able to put another input in. This leads me to believe that I need to put the
options = input() inside the main while loop?


RE: Dictionary/List Homework - ichabod801 - Dec-14-2018

(Dec-14-2018, 09:49 PM)ImLearningPython Wrote: This leads me to believe that I need to put the
options = input() inside the main while loop?

Yes.


RE: Dictionary/List Homework - ImLearningPython - Dec-17-2018

Thank you everybody for the help. I was finally able to get this finished enough to get an A.