“Ошибка питона” Ответ

Как печатать ошибку в Try, кроме Python

try:
  # some code
except Exception as e:
	print("ERROR : "+str(e))
Jenova

Тип печати исключения Python

try:
    someFunction()
except Exception as ex:
    template = "An exception of type {0} occurred. Arguments:\n{1!r}"
    message = template.format(type(ex).__name__, ex.args)
    print (message)
Graceful Gannet

За исключением исключения:

>>> def catch():
...     try:
...         asd()
...     except Exception as e:
...         print e.message, e.args
... 
>>> catch()
global name 'asd' is not defined ("global name 'asd' is not defined",)
Distinct Dormouse

Поймайте ошибку Python

import traceback

dict = {'a':3,'b':5,'c':8}
try:
  print(dict[q])
 
except:
  traceback.print_exc()
  
# This will trace you back to the line where everything went wrong. 
# So in this case you will get back line 5    
  
  
Poised Peccary

Файл Python Open Try, кроме ошибки

def FileCheck(fn):
    try:
      open(fn, "r")
      return 1
    except IOError:
      print "Error: File does not appear to exist."
      return 0

result = FileCheck("testfile")
print result
Poor Panther

Ошибка питона

UsageError: Cell magic `%%mysql` not found.
Gaurav Amrutkar

Ответы похожие на “Ошибка питона”

Вопросы похожие на “Ошибка питона”

Больше похожих ответов на “Ошибка питона” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования