Question: What does this code output? astr = 'Hello Bob' istr = 0 try: istr = int(astr) except: istr = -1 print(istr)
What does this code output?
astr = 'Hello Bob' istr = 0 try: istr = int(astr) except: istr = -1
print(istr)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
