Sorry: IndentationError: unexpected indent (oushi.py, line 19)
时间: 2023-10-23 15:48:14 浏览: 130
python笔记
This error message is indicating that there is an issue with the indentation of your code on line 19 of the file "oushi.py".
Python uses indentation to determine the structure of your code, so it is important to ensure that all lines are properly indented. A common mistake is to mix tabs and spaces for indentation, which can cause unexpected errors.
To fix this error, check the indentation of the lines above and including line 19 and make sure they are all using the same number of spaces for indentation. Also, ensure that you are not using any tabs for indentation.
阅读全文