Home / Questions / Other ValueError: invalid literal for int() with base 10 का समाधान क्या है? कौन सा code pattern सही समाधान है? Other 0 Views Verified ValueError: invalid literal for int() with base 10 का समाधान क्या है? कौन सा code pattern सही समाधान है? #python #error #debugging #exception #solution Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer value = int('123') value = int('123') Additional Explanation int() को valid integer representation दें।
Verified value = int('12.5') value = int('12.5') Additional Explanation यह विकल्प सही समाधान नहीं है।