নীচের কোনটি ট্রাই-এক্সেপ্ট ক্লজ লেখার জন্যে সঠিক সিনট্যাক্স?
1
try:
[ program statements where exceptions might occur]
except [exception-name]:
[ code to handle exception]
[ program statements where exceptions might occur]
except [exception-name]:
[ code to handle exception]
2
try();
[ program statements where exceptions might occur]
except [exception-name];
[ code to handle exception]
[ program statements where exceptions might occur]
except [exception-name];
[ code to handle exception]
3
try:
[ program statements where exceptions might occur]
except (
[ code to handle exception])
[ program statements where exceptions might occur]
except (
[ code to handle exception])
4
কোনোটিই নয়