On Mon, 28 Oct 2019 at 14:42, ferzan saglam <ferzan...@gmail.com> wrote:
> How can I stop this code when -1 is typed or at a maximum item count of ten.
> At the moment the code seems to be in a infinite loop meaning it keeps on 
> asking for an entry until -1 is typed

>     item = input()
>     item != -1:

Try these two in REPL and see how the break condition you are using in
your code is evaluated, then check each of the comparison operands.

-- 
Andrea
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to