Login
Remember
Register
Ask a Question
What is Try Block in Python?
0
votes
asked
May 17, 2020
in
Python
by
SakshiSharma
What is Try Block?
#python-try-block
#try-block-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 17, 2020
by
sharadyadav1986
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
}
...