If there are more than one except:
branches after the try:
, can we say that:
- one or more of the
try:
blocks will be executed - none of the
try:
blocks will be executed - not more than one
try:
block will be executed - exactly one of the
try:
blocks will be executed
In my opinion, the right answer will be "not more than one try:
", but maybe "one or more of the try:
"?