<?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: Vairavan</title>
    <description>The latest articles on DEV Community by Vairavan (@surya_960b9a895415589fa9e).</description>
    <link>https://dev.to/surya_960b9a895415589fa9e</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%2F3934693%2F09d8004b-0c8a-4dac-b06a-7204cd26b432.png</url>
      <title>DEV Community: Vairavan</title>
      <link>https://dev.to/surya_960b9a895415589fa9e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/surya_960b9a895415589fa9e"/>
    <language>en</language>
    <item>
      <title>Day 1 Python Learning 🐍</title>
      <dc:creator>Vairavan</dc:creator>
      <pubDate>Tue, 26 May 2026 09:41:37 +0000</pubDate>
      <link>https://dev.to/surya_960b9a895415589fa9e/day-1-python-learning-13nh</link>
      <guid>https://dev.to/surya_960b9a895415589fa9e/day-1-python-learning-13nh</guid>
      <description>&lt;p&gt;** Today I Started learning python programming language.&lt;br&gt;
I learned some basic concepts about python and terminal commands..**&lt;/p&gt;

&lt;p&gt;** Python is a Interpreted and dynamically typed programming language.&lt;br&gt;
Python automatically Understands the datatype.&lt;br&gt;
Interpreter means a code is Executed Line by Line.&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;x=10
x="HI"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;**&lt;/p&gt;

&lt;h2&gt;
  
  
  Terminal Commands
&lt;/h2&gt;

&lt;p&gt;** I Learn How to use Terminal Cmd :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;" ls " -used to show file and folders&lt;/li&gt;
&lt;li&gt;" cd " -used to change folder&lt;/li&gt;
&lt;li&gt;" cd .. " -used to one step back file are folder&lt;/li&gt;
&lt;li&gt;" --version " -used to check the versions (ex) python --version 
output :3.14.3 
*up arrrow -used to access previous commands&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;**&lt;/p&gt;

&lt;h2&gt;
  
  
  Conditional Statements
&lt;/h2&gt;

&lt;p&gt;**  Conditional Statements used to Make Decisions in Programming  **&lt;/p&gt;

&lt;p&gt;EX :&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
b=5
if a&amp;gt;b:
    print(a)
else:
    print(b)

output:
a
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;if the condition is true, python executes the &lt;em&gt;if&lt;/em&gt;&lt;br&gt;
otherwise, it executes the &lt;em&gt;else&lt;/em&gt; block.&lt;/p&gt;

&lt;h2&gt;
  
  
  I Learn One Important of Boolean Datatype in Python
&lt;/h2&gt;

&lt;p&gt;**  I used to js in boolean datatype true and false.&lt;br&gt;
Python also true, false but used to first letter must be Capital.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;true, false ❌&lt;/li&gt;
&lt;li&gt;True, False ✅    **&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>learning</category>
      <category>fullstack</category>
    </item>
  </channel>
</rss>
