python except do nothing code example
Example 1: python try except empty
try:
print("I will try to print this line of code")
except:
pass
Example 2: python do nothing
# To do nothing within a statement, use pass
good = True
if good:
pass
else:
print('This is not good')