Ale Posted January 22, 2004 Report Share Posted January 22, 2004 // Como posso tratar erros usando o try/except ? // se de pra colokar algm exemplo... Quote Link to comment Share on other sites More sharing options...
0 thb_matrix Posted January 22, 2004 Report Share Posted January 22, 2004 Exemplo: a = [1, 3] print a[2] Neste caso, por ex, ele resultará em uma exception IndexError, pois a[2] não existe, apenas a[0] e a[1]. Então você poderia usar isto: a = [1, 3] try: print a[2] except IndexError: print "a[2] não existe!" Você pode tratar vários excepts também. Exemplo: a = [1, 3] try: print a[2] except IndexError: print "a[2] não existe!" except KeyboardInterrupt: print "Você apertou Control+C" except: print "Ocorreu um erro desconhecido!" Quote Link to comment Share on other sites More sharing options...
0 Ale Posted January 23, 2004 Author Report Share Posted January 23, 2004 // vlw ae !!// agora tratei os erros da calculadora... hehe Quote Link to comment Share on other sites More sharing options...
Question
Ale
// Como posso tratar erros usando o try/except ?
// se de pra colokar algm exemplo...
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.