<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sandhya Kolikonda</title>
    <description>The latest articles on DEV Community by Sandhya Kolikonda (@sandhya_kolikonda_).</description>
    <link>https://dev.to/sandhya_kolikonda_</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2589410%2Fafc05141-0ddf-4891-a41d-69b48decf526.png</url>
      <title>DEV Community: Sandhya Kolikonda</title>
      <link>https://dev.to/sandhya_kolikonda_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sandhya_kolikonda_"/>
    <language>en</language>
    <item>
      <title>Types of Errors in Python</title>
      <dc:creator>Sandhya Kolikonda</dc:creator>
      <pubDate>Sun, 16 Feb 2025 17:22:40 +0000</pubDate>
      <link>https://dev.to/sandhya_kolikonda_/types-of-errors-in-python-1ccn</link>
      <guid>https://dev.to/sandhya_kolikonda_/types-of-errors-in-python-1ccn</guid>
      <description>&lt;p&gt;In python programming we get three types of errors. they are&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;           1.Compile Time Error
           2.Logical Error
           3.Run Time Error
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Let us discuss in briefly:&lt;br&gt;
*&lt;em&gt;Compile Time Error: *&lt;/em&gt;&lt;br&gt;
These errors are occurs during compilation Time. and these errors occurs due to the syntax's are not followed during program Development.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;These errors are solved by programmers During Development Time.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Logical Error:&lt;/strong&gt;&lt;br&gt;
These errors occurs during runtime or execution time. and these errors occurs due to wrong representation of Logic.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;These errors are solved by programmers during Development Time.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Run Time Error:&lt;/strong&gt;&lt;br&gt;
These errors are occurs during Runtime or execution time. and these errors occurs due to wrong inputs or invalid inputs entered by end users or application users.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;When Runtime errors occurs, by default all the languages gives Technical error messages, which are understandable by programmers but not by end users. this is not a recommended process in real time.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;According to industry standards it is recommended to display always user friendly error messages for making the application robust by using exception handling.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Note:&lt;br&gt;
When the end-user enter the valid input to the project it gives valid result. and when the end-user enter the invalid input to the project then the project displays user-friendly error message by using exception handling. &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
