Commit 8b6b7338 by logesh.n

new commit

parent 4e9a8f1e
email_project
\ No newline at end of file
......@@ -4,7 +4,7 @@
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="Python 3.10 (venv)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
print("Welcome to KL Fam!")
\ No newline at end of file
try:
x =10
y =10
print(x)
print(x+y)
except NameError:
print("not defined")
except:
X =10
Y=10
print("an exception error", X+Y)
finally:
print("no errors")
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment