If you need to serve two different exceptions called Ex1 and Ex2 in one except branch, you can write:
except Ex1 Ex2:
except (ex1, Ex2):
except Ex1, Ex2:
except Ex1+Ex2:
Submit