[{"data":1,"prerenderedAt":993},["ShallowReactive",2],{"doc-\u002Ferrors\u002Fsyntaxerror-indentation-error-fix":3},{"id":4,"title":5,"body":6,"description":985,"extension":986,"meta":987,"navigation":988,"path":989,"seo":990,"stem":991,"__hash__":992},"content\u002Ferrors\u002Fsyntaxerror-indentation-error-fix.md","SyntaxError: indentation error (Fix)",{"type":7,"value":8,"toc":960},"minimark",[9,13,17,22,72,75,79,82,85,88,141,144,153,157,162,165,194,204,207,234,238,241,276,278,311,318,322,325,328,372,375,377,420,423,427,430,447,451,454,494,505,508,539,542,550,554,557,604,610,613,654,658,661,676,679,697,705,709,712,732,735,764,766,793,796,800,803,817,824,828,831,834,859,863,866,883,886,890,894,904,908,911,915,918,922,925,929,956],[10,11,5],"h1",{"id":12},"syntaxerror-indentation-error-fix",[14,15,16],"p",{},"This page helps beginners fix Python indentation-related syntax errors. It explains what the error means, why it happens, how to find the problem line, and how to correct it safely.",[18,19,21],"h2",{"id":20},"quick-fix","Quick fix",[23,24,29],"pre",{"className":25,"code":26,"language":27,"meta":28,"style":28},"language-python shiki shiki-themes material-theme-lighter github-light github-dark","if True:\n    print(\"Correctly indented\")\n","python","",[30,31,32,49],"code",{"__ignoreMap":28},[33,34,37,41,45],"span",{"class":35,"line":36},"line",1,[33,38,40],{"class":39},"sVHd0","if",[33,42,44],{"class":43},"s39Yj"," True",[33,46,48],{"class":47},"sP7_E",":\n",[33,50,52,56,59,63,67,69],{"class":35,"line":51},2,[33,53,55],{"class":54},"sptTA","    print",[33,57,58],{"class":47},"(",[33,60,62],{"class":61},"sjJ54","\"",[33,64,66],{"class":65},"s_sjI","Correctly indented",[33,68,62],{"class":61},[33,70,71],{"class":47},")\n",[14,73,74],{},"Python uses indentation to define code blocks. After a line ending with a colon, indent the next line consistently.",[18,76,78],{"id":77},"what-this-error-means","What this error means",[14,80,81],{},"Python uses indentation to show which lines belong inside a block of code.",[14,83,84],{},"This error usually means Python expected indentation, or found indentation that does not match the surrounding code.",[14,86,87],{},"This often happens after statements such as:",[89,90,91,96,101,106,111,116,121,126,131,136],"ul",{},[92,93,94],"li",{},[30,95,40],{},[92,97,98],{},[30,99,100],{},"for",[92,102,103],{},[30,104,105],{},"while",[92,107,108],{},[30,109,110],{},"def",[92,112,113],{},[30,114,115],{},"class",[92,117,118],{},[30,119,120],{},"try",[92,122,123],{},[30,124,125],{},"except",[92,127,128],{},[30,129,130],{},"else",[92,132,133],{},[30,134,135],{},"elif",[92,137,138],{},[30,139,140],{},"with",[14,142,143],{},"In short, the code structure is unclear because spaces or tabs are missing, extra, or inconsistent.",[14,145,146,147,152],{},"If you are new to this, see ",[148,149,151],"a",{"href":150},"\u002Flearn\u002Fpython-indentation-rules-and-why-they-matter\u002F","Python indentation rules and why they matter",".",[18,154,156],{"id":155},"common-example-that-causes-the-error","Common example that causes the error",[158,159,161],"h3",{"id":160},"_1-a-line-after-a-colon-is-not-indented","1. A line after a colon is not indented",[14,163,164],{},"This is one of the most common causes.",[23,166,168],{"className":25,"code":167,"language":27,"meta":28,"style":28},"if True:\nprint(\"Hello\")\n",[30,169,170,178],{"__ignoreMap":28},[33,171,172,174,176],{"class":35,"line":36},[33,173,40],{"class":39},[33,175,44],{"class":43},[33,177,48],{"class":47},[33,179,180,183,185,187,190,192],{"class":35,"line":51},[33,181,182],{"class":54},"print",[33,184,58],{"class":47},[33,186,62],{"class":61},[33,188,189],{"class":65},"Hello",[33,191,62],{"class":61},[33,193,71],{"class":47},[14,195,196,197,200,201,203],{},"Python expects the ",[30,198,199],{},"print()"," line to be inside the ",[30,202,40],{}," block.",[14,205,206],{},"Fixed version:",[23,208,210],{"className":25,"code":209,"language":27,"meta":28,"style":28},"if True:\n    print(\"Hello\")\n",[30,211,212,220],{"__ignoreMap":28},[33,213,214,216,218],{"class":35,"line":36},[33,215,40],{"class":39},[33,217,44],{"class":43},[33,219,48],{"class":47},[33,221,222,224,226,228,230,232],{"class":35,"line":51},[33,223,55],{"class":54},[33,225,58],{"class":47},[33,227,62],{"class":61},[33,229,189],{"class":65},[33,231,62],{"class":61},[33,233,71],{"class":47},[158,235,237],{"id":236},"_2-a-line-is-indented-when-python-is-not-expecting-it","2. A line is indented when Python is not expecting it",[14,239,240],{},"Sometimes a line starts with spaces even though it should begin at the left side.",[23,242,244],{"className":25,"code":243,"language":27,"meta":28,"style":28},"print(\"Start\")\n    print(\"This line has extra indentation\")\n",[30,245,246,261],{"__ignoreMap":28},[33,247,248,250,252,254,257,259],{"class":35,"line":36},[33,249,182],{"class":54},[33,251,58],{"class":47},[33,253,62],{"class":61},[33,255,256],{"class":65},"Start",[33,258,62],{"class":61},[33,260,71],{"class":47},[33,262,263,265,267,269,272,274],{"class":35,"line":51},[33,264,55],{"class":54},[33,266,58],{"class":47},[33,268,62],{"class":61},[33,270,271],{"class":65},"This line has extra indentation",[33,273,62],{"class":61},[33,275,71],{"class":47},[14,277,206],{},[23,279,281],{"className":25,"code":280,"language":27,"meta":28,"style":28},"print(\"Start\")\nprint(\"This line has extra indentation\")\n",[30,282,283,297],{"__ignoreMap":28},[33,284,285,287,289,291,293,295],{"class":35,"line":36},[33,286,182],{"class":54},[33,288,58],{"class":47},[33,290,62],{"class":61},[33,292,256],{"class":65},[33,294,62],{"class":61},[33,296,71],{"class":47},[33,298,299,301,303,305,307,309],{"class":35,"line":51},[33,300,182],{"class":54},[33,302,58],{"class":47},[33,304,62],{"class":61},[33,306,271],{"class":65},[33,308,62],{"class":61},[33,310,71],{"class":47},[14,312,313,314,152],{},"If Python shows a more specific message, see ",[148,315,317],{"href":316},"\u002Ferrors\u002Findentationerror-unexpected-indent-fix\u002F","IndentationError: unexpected indent",[158,319,321],{"id":320},"_3-tabs-and-spaces-are-mixed-in-the-same-block","3. Tabs and spaces are mixed in the same block",[14,323,324],{},"This can be hard to see because tabs and spaces may look similar in your editor.",[14,326,327],{},"Problem example:",[23,329,331],{"className":25,"code":330,"language":27,"meta":28,"style":28},"if True:\n    print(\"Line with a tab\")\n    print(\"Line with spaces\")\n",[30,332,333,341,356],{"__ignoreMap":28},[33,334,335,337,339],{"class":35,"line":36},[33,336,40],{"class":39},[33,338,44],{"class":43},[33,340,48],{"class":47},[33,342,343,345,347,349,352,354],{"class":35,"line":51},[33,344,55],{"class":54},[33,346,58],{"class":47},[33,348,62],{"class":61},[33,350,351],{"class":65},"Line with a tab",[33,353,62],{"class":61},[33,355,71],{"class":47},[33,357,359,361,363,365,368,370],{"class":35,"line":358},3,[33,360,55],{"class":54},[33,362,58],{"class":47},[33,364,62],{"class":61},[33,366,367],{"class":65},"Line with spaces",[33,369,62],{"class":61},[33,371,71],{"class":47},[14,373,374],{},"The indentation looks similar, but the first indented line uses a tab and the second uses spaces.",[14,376,206],{},[23,378,380],{"className":25,"code":379,"language":27,"meta":28,"style":28},"if True:\n    print(\"Line one\")\n    print(\"Line two\")\n",[30,381,382,390,405],{"__ignoreMap":28},[33,383,384,386,388],{"class":35,"line":36},[33,385,40],{"class":39},[33,387,44],{"class":43},[33,389,48],{"class":47},[33,391,392,394,396,398,401,403],{"class":35,"line":51},[33,393,55],{"class":54},[33,395,58],{"class":47},[33,397,62],{"class":61},[33,399,400],{"class":65},"Line one",[33,402,62],{"class":61},[33,404,71],{"class":47},[33,406,407,409,411,413,416,418],{"class":35,"line":358},[33,408,55],{"class":54},[33,410,58],{"class":47},[33,412,62],{"class":61},[33,414,415],{"class":65},"Line two",[33,417,62],{"class":61},[33,419,71],{"class":47},[14,421,422],{},"Use spaces only if you are a beginner. Four spaces per indentation level is the standard.",[18,424,426],{"id":425},"how-to-fix-it","How to fix it",[14,428,429],{},"Use these steps to find and fix the problem quickly:",[89,431,432,435,438,441,444],{},[92,433,434],{},"Check the line shown in the traceback",[92,436,437],{},"Also check the line above it because the real mistake is often there",[92,439,440],{},"Make sure lines inside the same block use the same indentation level",[92,442,443],{},"Use 4 spaces for each indentation level",[92,445,446],{},"Do not mix tabs and spaces",[158,448,450],{"id":449},"example-checking-the-line-above","Example: checking the line above",[14,452,453],{},"This code will fail:",[23,455,457],{"className":25,"code":456,"language":27,"meta":28,"style":28},"for i in range(3):\nprint(i)\n",[30,458,459,482],{"__ignoreMap":28},[33,460,461,463,467,470,473,475,479],{"class":35,"line":36},[33,462,100],{"class":39},[33,464,466],{"class":465},"su5hD"," i ",[33,468,469],{"class":39},"in",[33,471,472],{"class":54}," range",[33,474,58],{"class":47},[33,476,478],{"class":477},"srdBf","3",[33,480,481],{"class":47},"):\n",[33,483,484,486,488,492],{"class":35,"line":51},[33,485,182],{"class":54},[33,487,58],{"class":47},[33,489,491],{"class":490},"slqww","i",[33,493,71],{"class":47},[14,495,496,497,500,501,504],{},"The error may point to the ",[30,498,499],{},"print(i)"," line, but the real issue is that the line after ",[30,502,503],{},"for ...:"," was not indented.",[14,506,507],{},"Correct version:",[23,509,511],{"className":25,"code":510,"language":27,"meta":28,"style":28},"for i in range(3):\n    print(i)\n",[30,512,513,529],{"__ignoreMap":28},[33,514,515,517,519,521,523,525,527],{"class":35,"line":36},[33,516,100],{"class":39},[33,518,466],{"class":465},[33,520,469],{"class":39},[33,522,472],{"class":54},[33,524,58],{"class":47},[33,526,478],{"class":477},[33,528,481],{"class":47},[33,530,531,533,535,537],{"class":35,"line":51},[33,532,55],{"class":54},[33,534,58],{"class":47},[33,536,491],{"class":490},[33,538,71],{"class":47},[14,540,541],{},"Expected output:",[23,543,548],{"className":544,"code":546,"language":547,"meta":28},[545],"language-text","0\n1\n2\n","text",[30,549,546],{"__ignoreMap":28},[158,551,553],{"id":552},"example-keeping-the-same-indentation-inside-one-block","Example: keeping the same indentation inside one block",[14,555,556],{},"Wrong:",[23,558,560],{"className":25,"code":559,"language":27,"meta":28,"style":28},"def greet():\n    print(\"Hello\")\n      print(\"Welcome\")\n",[30,561,562,574,588],{"__ignoreMap":28},[33,563,564,567,571],{"class":35,"line":36},[33,565,110],{"class":566},"sbsja",[33,568,570],{"class":569},"sGLFI"," greet",[33,572,573],{"class":47},"():\n",[33,575,576,578,580,582,584,586],{"class":35,"line":51},[33,577,55],{"class":54},[33,579,58],{"class":47},[33,581,62],{"class":61},[33,583,189],{"class":65},[33,585,62],{"class":61},[33,587,71],{"class":47},[33,589,590,593,595,597,600,602],{"class":35,"line":358},[33,591,592],{"class":54},"      print",[33,594,58],{"class":47},[33,596,62],{"class":61},[33,598,599],{"class":65},"Welcome",[33,601,62],{"class":61},[33,603,71],{"class":47},[14,605,606,607,609],{},"The second ",[30,608,199],{}," line has different indentation.",[14,611,612],{},"Correct:",[23,614,616],{"className":25,"code":615,"language":27,"meta":28,"style":28},"def greet():\n    print(\"Hello\")\n    print(\"Welcome\")\n",[30,617,618,626,640],{"__ignoreMap":28},[33,619,620,622,624],{"class":35,"line":36},[33,621,110],{"class":566},[33,623,570],{"class":569},[33,625,573],{"class":47},[33,627,628,630,632,634,636,638],{"class":35,"line":51},[33,629,55],{"class":54},[33,631,58],{"class":47},[33,633,62],{"class":61},[33,635,189],{"class":65},[33,637,62],{"class":61},[33,639,71],{"class":47},[33,641,642,644,646,648,650,652],{"class":35,"line":358},[33,643,55],{"class":54},[33,645,58],{"class":47},[33,647,62],{"class":61},[33,649,599],{"class":65},[33,651,62],{"class":61},[33,653,71],{"class":47},[158,655,657],{"id":656},"useful-commands-for-checking-your-file","Useful commands for checking your file",[14,659,660],{},"Run your script normally:",[23,662,666],{"className":663,"code":664,"language":665,"meta":28,"style":28},"language-bash shiki shiki-themes material-theme-lighter github-light github-dark","python your_script.py\n","bash",[30,667,668],{"__ignoreMap":28},[33,669,670,673],{"class":35,"line":36},[33,671,27],{"class":672},"sbgvK",[33,674,675],{"class":65}," your_script.py\n",[14,677,678],{},"Or ask Python to compile it and report syntax problems:",[23,680,682],{"className":663,"code":681,"language":665,"meta":28,"style":28},"python -m py_compile your_script.py\n",[30,683,684],{"__ignoreMap":28},[33,685,686,688,692,695],{"class":35,"line":36},[33,687,27],{"class":672},[33,689,691],{"class":690},"stzsN"," -m",[33,693,694],{"class":65}," py_compile",[33,696,675],{"class":65},[14,698,699,700,704],{},"If you are still stuck, a step-by-step ",[148,701,703],{"href":702},"\u002Fhow-to\u002Fhow-to-debug-python-code-beginner-guide\u002F","beginner guide to debugging Python code"," can help.",[18,706,708],{"id":707},"places-where-beginners-often-see-it","Places where beginners often see it",[14,710,711],{},"Beginners often run into this error in these places:",[89,713,714,720,723,726,729],{},[92,715,716,717,719],{},"After ",[30,718,40],{}," statements",[92,721,722],{},"Inside loops",[92,724,725],{},"Inside functions",[92,727,728],{},"When copying code from websites or documents",[92,730,731],{},"After editing code in different editors",[14,733,734],{},"A very common example is forgetting to indent after a function definition:",[23,736,738],{"className":25,"code":737,"language":27,"meta":28,"style":28},"def say_hi():\nprint(\"Hi\")\n",[30,739,740,749],{"__ignoreMap":28},[33,741,742,744,747],{"class":35,"line":36},[33,743,110],{"class":566},[33,745,746],{"class":569}," say_hi",[33,748,573],{"class":47},[33,750,751,753,755,757,760,762],{"class":35,"line":51},[33,752,182],{"class":54},[33,754,58],{"class":47},[33,756,62],{"class":61},[33,758,759],{"class":65},"Hi",[33,761,62],{"class":61},[33,763,71],{"class":47},[14,765,507],{},[23,767,769],{"className":25,"code":768,"language":27,"meta":28,"style":28},"def say_hi():\n    print(\"Hi\")\n",[30,770,771,779],{"__ignoreMap":28},[33,772,773,775,777],{"class":35,"line":36},[33,774,110],{"class":566},[33,776,746],{"class":569},[33,778,573],{"class":47},[33,780,781,783,785,787,789,791],{"class":35,"line":51},[33,782,55],{"class":54},[33,784,58],{"class":47},[33,786,62],{"class":61},[33,788,759],{"class":65},[33,790,62],{"class":61},[33,792,71],{"class":47},[14,794,795],{},"If the problem started after copying code, retype the indentation manually instead of trusting the pasted whitespace.",[18,797,799],{"id":798},"how-to-prevent-it","How to prevent it",[14,801,802],{},"A few simple habits can prevent most indentation errors:",[89,804,805,808,811,814],{},[92,806,807],{},"Configure your editor to insert spaces instead of tabs",[92,809,810],{},"Turn on visible whitespace if your editor supports it",[92,812,813],{},"Indent code immediately after typing a colon",[92,815,816],{},"Format code consistently before running it",[14,818,819,820,152],{},"It also helps to understand basic Python structure. If needed, review ",[148,821,823],{"href":822},"\u002Flearn\u002Fpython-syntax-basics-explained\u002F","Python syntax basics explained",[18,825,827],{"id":826},"when-to-read-a-more-specific-error-page","When to read a more specific error page",[14,829,830],{},"This page covers indentation-related syntax problems in general. Sometimes Python gives a more exact error name.",[14,832,833],{},"Use a more specific page when needed:",[89,835,836,844,854],{},[92,837,838,839,843],{},"Read ",[148,840,842],{"href":841},"\u002Ferrors\u002Findentationerror-expected-an-indented-block-fix\u002F","IndentationError: expected an indented block"," if Python says that exact message",[92,845,838,846,850,851],{},[148,847,849],{"href":848},"\u002Ferrors\u002Fsyntaxerror-missing-colon-fix\u002F","SyntaxError: missing colon"," if the block-starting line forgot ",[30,852,853],{},":",[92,855,838,856,858],{},[148,857,317],{"href":316}," if a line is indented when it should not be",[18,860,862],{"id":861},"common-mistakes","Common mistakes",[14,864,865],{},"These are the most common causes of this error:",[89,867,868,871,874,877,880],{},[92,869,870],{},"Missing indentation after a colon",[92,872,873],{},"Extra indentation on a line that should start at the left margin",[92,875,876],{},"Mixing tabs and spaces",[92,878,879],{},"Copying code with broken whitespace",[92,881,882],{},"Indenting one line in a block more or less than the others",[14,884,885],{},"When checking your code, compare each line in the same block carefully. Even one extra space can be enough to break the structure.",[18,887,889],{"id":888},"faq","FAQ",[158,891,893],{"id":892},"is-this-the-same-as-indentationerror","Is this the same as IndentationError?",[14,895,896,897,900,901,152],{},"They are closely related. Some indentation problems appear as ",[30,898,899],{},"SyntaxError",", while others appear as ",[30,902,903],{},"IndentationError",[158,905,907],{"id":906},"how-many-spaces-should-i-use-in-python","How many spaces should I use in Python?",[14,909,910],{},"Use 4 spaces for each indentation level. This is the standard style.",[158,912,914],{"id":913},"why-does-the-error-point-to-the-wrong-line-sometimes","Why does the error point to the wrong line sometimes?",[14,916,917],{},"The real problem is often on the previous line, especially after a line that should start a block.",[158,919,921],{"id":920},"can-tabs-work-in-python","Can tabs work in Python?",[14,923,924],{},"Tabs can appear in code, but mixing tabs and spaces causes problems. Beginners should use spaces only.",[18,926,928],{"id":927},"see-also","See also",[89,930,931,935,939,943,947,951],{},[92,932,933],{},[148,934,151],{"href":150},[92,936,937],{},[148,938,317],{"href":316},[92,940,941],{},[148,942,842],{"href":841},[92,944,945],{},[148,946,849],{"href":848},[92,948,949],{},[148,950,823],{"href":822},[92,952,953],{},[148,954,955],{"href":702},"Beginner guide to debugging Python code",[957,958,959],"style",{},"html pre.shiki code .sVHd0, html code.shiki .sVHd0{--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#D73A49;--shiki-default-font-style:inherit;--shiki-dark:#F97583;--shiki-dark-font-style:inherit}html pre.shiki code .s39Yj, html code.shiki .s39Yj{--shiki-light:#39ADB5;--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sP7_E, html code.shiki .sP7_E{--shiki-light:#39ADB5;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .sptTA, html code.shiki .sptTA{--shiki-light:#6182B8;--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .sjJ54, html code.shiki .sjJ54{--shiki-light:#39ADB5;--shiki-default:#032F62;--shiki-dark:#9ECBFF}html pre.shiki code .s_sjI, html code.shiki .s_sjI{--shiki-light:#91B859;--shiki-default:#032F62;--shiki-dark:#9ECBFF}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html pre.shiki code .su5hD, html code.shiki .su5hD{--shiki-light:#90A4AE;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .srdBf, html code.shiki .srdBf{--shiki-light:#F76D47;--shiki-default:#005CC5;--shiki-dark:#79B8FF}html pre.shiki code .slqww, html code.shiki .slqww{--shiki-light:#6182B8;--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .sbsja, html code.shiki .sbsja{--shiki-light:#9C3EDA;--shiki-default:#D73A49;--shiki-dark:#F97583}html pre.shiki code .sGLFI, html code.shiki .sGLFI{--shiki-light:#6182B8;--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .sbgvK, html code.shiki .sbgvK{--shiki-light:#E2931D;--shiki-default:#6F42C1;--shiki-dark:#B392F0}html pre.shiki code .stzsN, html code.shiki .stzsN{--shiki-light:#91B859;--shiki-default:#005CC5;--shiki-dark:#79B8FF}",{"title":28,"searchDepth":51,"depth":51,"links":961},[962,963,964,969,974,975,976,977,978,984],{"id":20,"depth":51,"text":21},{"id":77,"depth":51,"text":78},{"id":155,"depth":51,"text":156,"children":965},[966,967,968],{"id":160,"depth":358,"text":161},{"id":236,"depth":358,"text":237},{"id":320,"depth":358,"text":321},{"id":425,"depth":51,"text":426,"children":970},[971,972,973],{"id":449,"depth":358,"text":450},{"id":552,"depth":358,"text":553},{"id":656,"depth":358,"text":657},{"id":707,"depth":51,"text":708},{"id":798,"depth":51,"text":799},{"id":826,"depth":51,"text":827},{"id":861,"depth":51,"text":862},{"id":888,"depth":51,"text":889,"children":979},[980,981,982,983],{"id":892,"depth":358,"text":893},{"id":906,"depth":358,"text":907},{"id":913,"depth":358,"text":914},{"id":920,"depth":358,"text":921},{"id":927,"depth":51,"text":928},"Master syntaxerror indentation error fix in our comprehensive Python beginner guide.","md",{},true,"\u002Ferrors\u002Fsyntaxerror-indentation-error-fix",{"title":5,"description":985},"errors\u002Fsyntaxerror-indentation-error-fix","AOHKhXd-FzeAGMVPxE3MRFnoRlooxbhUXTuZxdKjh7E",1777585480892]