0 votes
in Python by
What is Try Block?

1 Answer

0 votes
by
A block which is preceded by the try keyword is known as a try block

Syntax:

1

2

3

try{

   //statements that may cause an exception

}

Related questions

0 votes
asked Jan 18, 2021 in Python by SakshiSharma
0 votes
asked May 3, 2021 in JAVA by Robindeniel
...