Answers for "how to use try without except in python"

2

python try without except

try:
    print('try to print this')
except:
    pass #do nothing
Posted by: Guest on August-15-2020
1

only try python

try:
    a=2
except:
    pass
Posted by: Guest on October-22-2020

Code answers related to "how to use try without except in python"

Python Answers by Framework

Browse Popular Code Answers by Language