On 2018-05-25, [email protected] <[email protected]> wrote: > here is the code, i keep getting an error, "break outside loop".
You get the "break outside loop" error because you're using the break
statement when you are not inside a loop.
> if it is false just exit function
You use the 'return' statement to exit a function.
> def d(idx):
> if type(idx) != int:
> break
>
> d('k')
--
https://mail.python.org/mailman/listinfo/python-list
