Skip to main content
Search
Search This Blog
Priya Digital World
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
July 14, 2020
Python program for try and except
#try and except
a=int(
input
(
"Enter no"
))
try
:
x=
1
/a
print
(x)
except
:
print
(
"Invalid number"
)
finally
:
print
(
"Enter correct number"
)
Comments
Popular Posts
August 04, 2023
Falcon Integration in IMPS payment service
July 25, 2020
Python Data Structure Assignment_7.2 || Week 3
Comments
Post a Comment