Home / Questions / Other IndentationError को कैसे ठीक करें? इसका Python best-practice solution क्या है? — interview में इसका सही जवाब क्या है? Other 0 Views Verified IndentationError को कैसे ठीक करें? इसका Python best-practice solution क्या है? — interview में इसका सही जवाब क्या है? #python #error #debugging #exception #solution Sarkari Result QA Bank Editorially reviewed exam information Share
Verified if active: print('yes') with mixed tabs/spaces if active: print('yes') with mixed tabs/spaces Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer if active: print('yes') if active: print('yes') Additional Explanation Block statements में consistent indentation जरूरी है।
Verified if active print('yes') if active print('yes') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified if active: print('yes') if active: print('yes') Additional Explanation यह विकल्प सही समाधान नहीं है।