Home / Questions / Other TypeError: object is not callable का common कारण क्या है? इस error को future में कैसे prevent करें? Other 0 Views Verified TypeError: object is not callable का common कारण क्या है? इस error को future में कैसे prevent करें? #python #error #debugging #exception #solution Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer A variable name shadows a function, e.g. list = [1, 2] then list() A variable name shadows a function, e.g. list = [1, 2] then list() Additional Explanation Callable name को data variable से overwrite करने पर error हो सकता है।
Verified functions can never be called functions can never be called Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Python requires semicolons Python requires semicolons Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified lists are always callable lists are always callable Additional Explanation यह विकल्प सही समाधान नहीं है।