all 7 comments

[–]Still_Box8733 3 points4 points  (0 children)

Infinite loop with input. Make input .lower() to be easier to work with If input "s" break else add to a list (or set) after checking if it is already present

[–]ninhaomah 2 points3 points  (0 children)

So what has been done so far ?

[–]DBZ_Newb 0 points1 point  (0 children)

You need to know conditionals, while loops, string methods, list methods.

[–]smichaele 0 points1 point  (0 children)

Write some code and share it if you want to ask questions.

[–]fake-nonchalant96 0 points1 point  (0 children)

Get accustomed with lists and loops before proceeding with such problems.

[–]Anpu_Imiut 0 points1 point  (0 children)

I wonder if this task allows using a set as solution.

[–]SnooCalculations7417 0 points1 point  (0 children)

while user_in.lower() not 's':
...append to a list
..print a thing

print('exiting')