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