<?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: Punitha</title>
    <description>The latest articles on DEV Community by Punitha (@punitha2206).</description>
    <link>https://dev.to/punitha2206</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3998078%2F004b379a-ba70-424d-919e-6e4e3dedd4d9.png</url>
      <title>DEV Community: Punitha</title>
      <link>https://dev.to/punitha2206</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/punitha2206"/>
    <language>en</language>
    <item>
      <title>Operator Overloading</title>
      <dc:creator>Punitha</dc:creator>
      <pubDate>Tue, 30 Jun 2026 01:54:56 +0000</pubDate>
      <link>https://dev.to/punitha2206/operator-overloading-1909</link>
      <guid>https://dev.to/punitha2206/operator-overloading-1909</guid>
      <description>&lt;p&gt;What is Operator Overloading?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
Operator overloading allows operators such as +, -, *, and == to have different meanings depending on the objects they are used with.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example 1:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;a&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Hello&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="n"&gt;b&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Python&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;

&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;a&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;b&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Output:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hello Python    -&amp;gt; + operator joins two strings instead of performing addition.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Example 2:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Output:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;8               -&amp;gt; + operator performs arithmetic addition.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Symbols and Operators</title>
      <dc:creator>Punitha</dc:creator>
      <pubDate>Tue, 30 Jun 2026 01:54:21 +0000</pubDate>
      <link>https://dev.to/punitha2206/symbols-and-operators-4l02</link>
      <guid>https://dev.to/punitha2206/symbols-and-operators-4l02</guid>
      <description>&lt;p&gt;What are Symbols and Operators?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Symbols&lt;/strong&gt; are special characters used in Python to represent operations or actions.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Operators&lt;/strong&gt; are symbols that perform specific operations on variables and values.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;a = 10          -&amp;gt;  a and b are operands
b = 5           -&amp;gt;  = is an assignment operator

c = a + b       -&amp;gt;  + is an arithmetic operator
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Symbol and Operator Name&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Arithmetic Operators 
  +                                     Addition
  -                                     Subtraction
  *                                     Multiplication
  /                                     Division/True division
  //                                    Floor division
  %                                     Modulus
  **                                    Power/Exponent
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Comparison Operators
  ==                                    Equal to
  !=                                    Not Equal
  &amp;gt;                                     Greater than
  &amp;gt;=                                    Greater than or equal to
  &amp;lt;                                     Less than
  &amp;lt;=                                    Less than or equal to
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Logical Operators
  and                                   Logical AND
  or                                    Logical OR
  Not                                   Logical NOT
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Identity Operators:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Used to check whether two variables refer to the same object.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Identity Operators
  is                                    Identity      
  is not                                Not Identity
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Membership Operators:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Used to check whether a value exists in a sequence.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Membership Operators
  in                                    Membership
  not in                                Not Membership
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>symbols</category>
      <category>operators</category>
    </item>
    <item>
      <title>Variables/Identifiers</title>
      <dc:creator>Punitha</dc:creator>
      <pubDate>Tue, 30 Jun 2026 01:53:23 +0000</pubDate>
      <link>https://dev.to/punitha2206/variablesidentifiers-j8a</link>
      <guid>https://dev.to/punitha2206/variablesidentifiers-j8a</guid>
      <description>&lt;p&gt;What is a Variables?&lt;/p&gt;

&lt;p&gt;A Variables is a &lt;strong&gt;container&lt;/strong&gt; used to store data values in program.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Python&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="n"&gt;age&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;21&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Variable Naming Conventions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Can contain &lt;strong&gt;letters&lt;/strong&gt;, &lt;strong&gt;numbers&lt;/strong&gt;, and &lt;strong&gt;underscore(_)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Must start with a &lt;strong&gt;letter&lt;/strong&gt; or &lt;strong&gt;underscore&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Cannot &lt;strong&gt;start with a number&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Cannot contain &lt;strong&gt;spaces&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Cannot use &lt;strong&gt;Python keywords&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;special characters&lt;/strong&gt; are not allowed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Multi-words Variable Names:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Camel Case&lt;/strong&gt; - Each word except the first, start with a capital letter.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;studentName
employeeSalary
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pascal Case&lt;/strong&gt; - Each word start with a capital letter.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;StudentName
EmployeeSalary
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Snake Case&lt;/strong&gt; - each word is separated by an underscore character.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;student_name
employee_salary
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>variables</category>
      <category>identifiers</category>
    </item>
    <item>
      <title>Data Types</title>
      <dc:creator>Punitha</dc:creator>
      <pubDate>Mon, 29 Jun 2026 13:51:59 +0000</pubDate>
      <link>https://dev.to/punitha2206/data-types-4lf0</link>
      <guid>https://dev.to/punitha2206/data-types-4lf0</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Why Programming?&lt;br&gt;
   Programming is the process of writing instructions that tell a computer what to do.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What is a Data Types?&lt;br&gt;
  A data type Specific the type of value that a variable can store.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What is a Primitive Data Types?&lt;br&gt;
  Primitive data types are the basic built-in data types that store a single value.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;int   -&amp;gt;  Integer numbers -&amp;gt;  (10, -5)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;float -&amp;gt;  Decimal numbers -&amp;gt;  (3.14, 25.5)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;str   -&amp;gt;  Text/String     -&amp;gt;  ("Hello")&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;bool  -&amp;gt;  Boolean values  -&amp;gt;  (True, False)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;age&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;21&lt;/span&gt;         &lt;span class="o"&gt;-&amp;gt;&lt;/span&gt; &lt;span class="n"&gt;integer&lt;/span&gt;
&lt;span class="n"&gt;price&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;99.99&lt;/span&gt;    &lt;span class="o"&gt;-&amp;gt;&lt;/span&gt; &lt;span class="nb"&gt;float&lt;/span&gt;
&lt;span class="n"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Python&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;  &lt;span class="o"&gt;-&amp;gt;&lt;/span&gt; &lt;span class="n"&gt;string&lt;/span&gt;
&lt;span class="n"&gt;is_pass&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;   &lt;span class="o"&gt;-&amp;gt;&lt;/span&gt; &lt;span class="n"&gt;boolean&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
What is a Built-in Function in Python?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A built-in function is a function that is already available in Python.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="nf"&gt;input&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="nf"&gt;len&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="nf"&gt;type&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
print() -&amp;gt; Display output on the screen
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Hello World&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hello World
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
input() -&amp;gt; Takes input form the user
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;input&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Enter your name: &lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Enter your name:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
len() -&amp;gt; Returns the length of a string, list, etc.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Python&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;len&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;name&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;6
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
type() -&amp;gt; Returns the data type of a variable
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;type&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;x&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;class 'int'&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>programming</category>
      <category>python</category>
    </item>
    <item>
      <title>Introduction to Python</title>
      <dc:creator>Punitha</dc:creator>
      <pubDate>Mon, 29 Jun 2026 13:30:42 +0000</pubDate>
      <link>https://dev.to/punitha2206/introduction-to-python-3a7b</link>
      <guid>https://dev.to/punitha2206/introduction-to-python-3a7b</guid>
      <description>&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;What is Python?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python is a &lt;strong&gt;high-level&lt;/strong&gt;, &lt;strong&gt;easy-to-learn&lt;/strong&gt; programming language.&lt;/li&gt;
&lt;li&gt;Python is an &lt;strong&gt;interpreted&lt;/strong&gt;, &lt;strong&gt;object-oriented&lt;/strong&gt;, and general-purpose programming language.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Where is Python used?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Web Development
&lt;/li&gt;
&lt;li&gt;Data Analysis
&lt;/li&gt;
&lt;li&gt;Artificial Intelligence
&lt;/li&gt;
&lt;li&gt;Machine Learning
&lt;/li&gt;
&lt;li&gt;Automation&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Difference between Compiler and Interpreter?&lt;br&gt;
&lt;strong&gt;Compiler:&lt;/strong&gt;&lt;br&gt;
     * Translates the entire program at once&lt;br&gt;
     * One language to another language&lt;br&gt;
     * Whole execute&lt;br&gt;
     * Shows all errors after compilation&lt;br&gt;
     * Example: &lt;strong&gt;C, C++&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Interpreter:&lt;/strong&gt;&lt;br&gt;
     * Translates one line at a time&lt;br&gt;
     * One language to another language&lt;br&gt;
     * Execute line by line&lt;br&gt;
     * Shows errors one by one while executing&lt;br&gt;
     * Example: &lt;strong&gt;Python, JavaScript&lt;/strong&gt;   &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Who created Python?&lt;br&gt;
   &lt;strong&gt;Guido van Rossum&lt;/strong&gt; created Python and was first released in &lt;strong&gt;1991&lt;/strong&gt;. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Py&lt;/strong&gt; hello.py&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Python&lt;/strong&gt; hello.py&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Python3&lt;/strong&gt; hello.py&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;ul&gt;
&lt;li&gt;File to run  --&amp;gt; Scripting mode&lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
&lt;li&gt;Terminal run --&amp;gt; Interactive mode&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

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