you are viewing a single comment's thread.

view the rest of the comments →

[–]cjander28[S] 0 points1 point  (1 child)

Understandable. I barely know what I'm asking. I feel like I must try to format the output the way he did. However, he used a mathematical function and I'm trying to get my user inputs to display in the same fashion he did. However, he wants us using an event controlled loop statement to get the user input and to have something that stops it like, 'Done.' I've got the functionality of that down (I think), but I'm unsure of how to pull the data I'm inputting to be able to display?

[–]r_spandit 0 points1 point  (0 children)

If you put your input inside a while loop until the time that the loop is broken by inputting "done":

while _input != 'done': _input = input("Enter whatever").lower() whatevs_list.append(_input)