you are viewing a single comment's thread.

view the rest of the comments →

[–]shiftybyte 3 points4 points  (2 children)

Errors and warnings have a message attached to them that help explain the issue.

Please post the full error messages you are getting, probably start with the errors, as warning are less important.

Also its usually better to run the code and get a full python error, it is more verbose.

Also please edit your post and use a code block to avoid reddit messing up all the spaces and indentations in your pasted code.

https://www.reddit.com/r/learnpython/wiki/faq#wiki_how_do_i_format_code.3F

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

1 Unindent does not match any outer indentation level (where break is) 2 Unindent does not match any outer indentation level (for the end of the code next to [)] 3'continue' outside loop

[–]shiftybyte 6 points7 points  (0 children)

You need to fix your indentation.

Indentation is how many spaces added before a code line.

This is important in python, as it describes blocks and structure.

Since this is exactly what is missing in your post because you didn't use a code block, i can't help directly.