B14:Python Program to demonstrate debugging of script.
Program:
import sysimport pdb
pdb.set_trace();
print("\n Enter the numbers:");
a=input();
b=input();
c=int(a)+int(b);
print("\n the first number:");
print(a);
print("\n the second number:");
print(b);
print("\n The addition of two numbers:");
print(c);
0 comments:
Post a Comment