how to print error in try except python
try:
# some code
except Exception as e:
print("ERROR : "+str(e))
how to print error in try except python
try:
# some code
except Exception as e:
print("ERROR : "+str(e))
try except python
try:
print("I will try to print this line of code")
except ERROR_NAME:
print("I will print this line of code if error ERROR_NAME is encountered")
try except
try:
print("I will try to print this line of code")
except:
print("I will print this line of code if an error is encountered")
else:
print("I will print this line of code if there's no error encountered")
finally:
print("I will print this line of code even if there's an error or no error encountered")
try and catch
try
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
mail.From = new MailAddress("[email protected]");
mail.To.Add("to_address");
mail.Subject = "Test Mail";
mail.Body = "This is for testing SMTP mail from GMAIL";
SmtpServer.Port = 587;
SmtpServer.Credentials = new System.Net.NetworkCredential("username", "password");
SmtpServer.EnableSsl = true;
SmtpServer.Send(mail);
MessageBox.Show("mail Send");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
try and exception
def loan_emi(amount, duration, rate, down_payment=0):
loan_amount = amount - down_payment
try:
emi = loan_amount * rate * ((1+rate)**duration) / (((1+rate)**duration)-1)
except ZeroDivisionError:
emi = loan_amount / duration
emi = math.ceil(emi)
return emi
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us