requests.exceptions.ConnectionErrorrequests.exceptions.ConnectionError
requests library target server से connection स्थापित करने में विफल रही।
IOErrorI/O operation विफल हुई। Python 3 में IOError, OSError का alias है।
Input/output operation विफल हुई। Python 3 में IOError, OSError का alias है। सामान्य कारण: file not found, permission denied, disk full, या I/O device errors।
Python 3 में OSError की तरह handle करें (दोनों एक ही class हैं)। File paths और permissions जाँचें। पर्याप्त disk space सुनिश्चित करें। I/O device connected और कार्यशील है यह verify करें। अधिक targeted handling के लिए specific subclasses उपयोग करें।
requests.exceptions.ConnectionErrorrequests library target server से connection स्थापित करने में विफल रही।
OverflowErrorArithmetic operation का परिणाम represent करने के लिए बहुत बड़ा है।
IndentationErrorCode में गलत indentation है, जो Python में वाक्य-रचनात्मक रूप से महत्वपूर्ण है।
MemoryErrorPython इंटरप्रेटर में उपलब्ध मेमोरी समाप्त हो गई।
DeprecationWarningकिसी deprecated feature के बारे में चेतावनी जो भविष्य के संस्करण में हटाई जाएगी।
UnboundLocalErrorकिसी local variable को assign होने से पहले पढ़ा गया।