C
chandan kumar
Hi ,
Is there a way to validate variable values while debugging any python code.Run below example in debugging mode and i would like to know the value of c (I know print is an option) with any other option other than printing.
In C# or some other tools we can verify each statement and values. Is there way to check each statement in python code like in c#.
Ex:
def method()
a = 20
b =30
c = a + b
Best Regards,
Chanadn
Is there a way to validate variable values while debugging any python code.Run below example in debugging mode and i would like to know the value of c (I know print is an option) with any other option other than printing.
In C# or some other tools we can verify each statement and values. Is there way to check each statement in python code like in c#.
Ex:
def method()
a = 20
b =30
c = a + b
Best Regards,
Chanadn