Explain this below error in description | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Explain this below error in description

Traceback (most recent call last): File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in <module> start(fakepyfile,mainpyfile) File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start exec(open(mainpyfile).read(), __main__.__dict__) File "<string>", line 42 if choice ==2: ^ IndentationError: unindent does not match any outer indentation level [Program finished]

4th Dec 2020, 10:34 AM
RAAGESH KANNAN R N
RAAGESH KANNAN R N - avatar
4 Answers
+ 11
RAAGESH KANNAN R N It would be good if you can attach the code too!
4th Dec 2020, 1:54 PM
Piyush
Piyush - avatar
+ 3
You should show your code That we can easily find out more errors in your code in your code indentation error occurred in below if choice==2:
4th Dec 2020, 10:38 AM
Sâñtôsh
Sâñtôsh - avatar
+ 2
Ok
4th Dec 2020, 10:39 AM
RAAGESH KANNAN R N
RAAGESH KANNAN R N - avatar
+ 2
Python code can be indented with tabs or spaces. It’s up to you. Python only has an objection when you use both spaces and tabs to indent your code. Python requires you use only one method of indentation. This is because the language is statically typed. Statically typed programming languages are sticklers when it comes to syntax.  Indentation errors are a difficult one to understand because it involves the invisible: mixing spaces and tabs. Depending on the code editor you are using, you may not even be able to see whether spaces or tabs have been used until you delete your indents from your code. IndentationErrors are common when you copy code snippets from the internet. Every developer has their own preference when it comes to indentation and you’ll often find code snippets do not adhere to your own preferences. Some snippets will indent with spaces. If a code snippet you copy into your program uses a different type of indentation, you will see an IndentationError in your code.
4th Dec 2020, 1:12 PM
🇧🇩 𝚂𝚊𝚋𝚋𝚒𝚛 𝙷𝚘𝚜𝚜𝚊𝚒𝚗 🇧🇩
🇧🇩 𝚂𝚊𝚋𝚋𝚒𝚛 𝙷𝚘𝚜𝚜𝚊𝚒𝚗 🇧🇩 - avatar