<?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: Soham Kaviskar</title>
    <description>The latest articles on DEV Community by Soham Kaviskar (@sohmkaviskar).</description>
    <link>https://dev.to/sohmkaviskar</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%2F3289807%2F81dcb833-1691-4e2a-9f5a-c9249a1fbc9c.png</url>
      <title>DEV Community: Soham Kaviskar</title>
      <link>https://dev.to/sohmkaviskar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sohmkaviskar"/>
    <language>en</language>
    <item>
      <title>Day 2: {Not Easy Neither Hard}</title>
      <dc:creator>Soham Kaviskar</dc:creator>
      <pubDate>Tue, 01 Jul 2025 06:05:41 +0000</pubDate>
      <link>https://dev.to/sohmkaviskar/day-2-not-easy-neither-hard-8no</link>
      <guid>https://dev.to/sohmkaviskar/day-2-not-easy-neither-hard-8no</guid>
      <description>&lt;p&gt;Day 2 of Learning Python started with len [Subscripting]&lt;/p&gt;

&lt;p&gt;Imagine you want a Specific Letter of Any Unique word &lt;/p&gt;

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

&lt;p&gt;Sohm&lt;/p&gt;

&lt;p&gt;From this word if you specifically want the letter  " H " to be printed&lt;br&gt;
you can simply use&lt;/p&gt;

&lt;p&gt;print("Sohm[2]")&lt;/p&gt;

&lt;p&gt;Output: h&lt;br&gt;
You will be thinking why I used the number 2 not number 3 in brackets&lt;br&gt;
The Reason python number starts from 0.&lt;/p&gt;

&lt;p&gt;Types of Data Types&lt;/p&gt;

&lt;p&gt;Strings:&lt;br&gt;
print("232" + "341")&lt;br&gt;
Output = 232341&lt;br&gt;
Compiles every thing as Text&lt;/p&gt;

&lt;p&gt;Integer=Whole Number:&lt;br&gt;
print(123 + 543)&lt;br&gt;
Output = 666&lt;br&gt;
In between the number you can ADD, SUB, MULT, DIV, Expo.&lt;/p&gt;

&lt;p&gt;Float - Floating point number&lt;br&gt;
print(3.14)&lt;br&gt;
It prints the decimal digits&lt;/p&gt;

&lt;p&gt;Boolean&lt;br&gt;
print(True)&lt;br&gt;
print(False)&lt;/p&gt;

&lt;p&gt;Mathematical Operators&lt;br&gt;
Mathematical Operators are used in between the INTEGERS&lt;br&gt;
WHICH ARE&lt;br&gt;
ADDITION ---&amp;gt; +&lt;br&gt;
SUBTRACTION ---&amp;gt; -&lt;br&gt;
MULTIPLICATION ---&amp;gt; * &lt;br&gt;
DIVISION (Decimal lvl) ---&amp;gt; /&lt;br&gt;
DIVISION (Normal lvl) ---&amp;gt; //&lt;br&gt;
Square or Exponential ---&amp;gt; **&lt;/p&gt;

&lt;p&gt;There is Order of priority of Operators&lt;br&gt;
PEDMAS&lt;br&gt;
Parentheses, Exponents , Multiplication/Division ,ADD/SUB&lt;/p&gt;

&lt;p&gt;Question of the Day&lt;br&gt;
print(3 * 3 + 3 / 3 - 3)&lt;/p&gt;

&lt;p&gt;Answer&lt;br&gt;
print(3*(3+3)/3-3)&lt;/p&gt;

&lt;p&gt;The part here was hard to figure out the priority of Operators&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>ai</category>
    </item>
    <item>
      <title>Day 1: The Magical code</title>
      <dc:creator>Soham Kaviskar</dc:creator>
      <pubDate>Thu, 26 Jun 2025 11:52:10 +0000</pubDate>
      <link>https://dev.to/sohmkaviskar/day-1-100-days-of-python-2d4d</link>
      <guid>https://dev.to/sohmkaviskar/day-1-100-days-of-python-2d4d</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;Day 1 of Learning Python from Udemy&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Today in Python I learnt from &lt;strong&gt;Print *&lt;em&gt;to Generating a *&lt;/em&gt;&lt;em&gt;Folks Name Generateor&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
So it all started from writing simple code which everyone knows&lt;br&gt;
&lt;code&gt;print("Hello World")&lt;/code&gt; but theirs a twist you can't add &lt;strong&gt;space **between &lt;code&gt;print&lt;/code&gt; and &lt;code&gt;("Hello World")&lt;/code&gt; and also the ("") is known as **Strings&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Next comes the { &lt;code&gt;\n&lt;/code&gt; } which continues code in second line&lt;/p&gt;

&lt;p&gt;Also for merging use " + " itconnects a words or sentence&lt;/p&gt;

&lt;p&gt;Using the len(&lt;a class="mentioned-user" href="https://dev.to/sohmkaviskar"&gt;@sohmkaviskar&lt;/a&gt;) inside this len you can add any text and output &lt;br&gt;
will the characters it contains&lt;br&gt;
Ex: sohmkaviskar&lt;br&gt;
    12&lt;/p&gt;

&lt;p&gt;Mostly the Hard to come up with understanding is the&lt;br&gt;
&lt;strong&gt;Variable&lt;/strong&gt; : It use to name a code which can be in strings, print, input etc.Also it can be use has tag &lt;br&gt;
Ex:&lt;br&gt;
Here the Word before the equal is string has it next used in 2nd line&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Username=input("What is your name?")&lt;br&gt;
Length= len(Username)&lt;br&gt;
print(Length)   &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There's Question for you:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm0tu2khq4tlzp5h19he2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm0tu2khq4tlzp5h19he2.png" alt="Image description" width="475" height="202"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;glass1 = "milk"&lt;br&gt;
glass2 = "juice"&lt;/p&gt;

&lt;p&gt;Thank You.&lt;/p&gt;

&lt;p&gt;You can't replace the glass with each other like &lt;br&gt;
`glass1----&amp;gt;glass2&lt;/p&gt;

&lt;p&gt;glass2="milk"&lt;br&gt;
glass1="juice"`&lt;/p&gt;

&lt;p&gt;This is &lt;strong&gt;Incorrect&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>code</category>
      <category>python</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
