अपवाद के मामले में अपनी खिड़की को खुला रखने के लिए (अभी तक, अपवाद को प्रिंट करते समय)
अजगर २
if __name__ == '__main__':
try:
## your code, typically one function call
except Exception:
import sys
print sys.exc_info()[0]
import traceback
print traceback.format_exc()
print "Press Enter to continue ..."
raw_input()
किसी भी मामले में खिड़की खुली रखने के लिए:
if __name__ == '__main__':
try:
## your code, typically one function call
except Exception:
import sys
print sys.exc_info()[0]
import traceback
print traceback.format_exc()
finally:
print "Press Enter to continue ..."
raw_input()
अजगर ३
Python3 के लिए आपको इसके स्थान पर उपयोगinput()
raw_input()
करना होगा , और निश्चित रूप से print
कथनों को अनुकूलित करना होगा ।
if __name__ == '__main__':
try:
## your code, typically one function call
except BaseException:
import sys
print(sys.exc_info()[0])
import traceback
print(traceback.format_exc())
print("Press Enter to continue ...")
input()
किसी भी मामले में खिड़की खुली रखने के लिए:
if __name__ == '__main__':
try:
## your code, typically one function call
except BaseException:
import sys
print(sys.exc_info()[0])
import traceback
print(traceback.format_exc())
finally:
print("Press Enter to continue ...")
input()