<?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: Anjali Chaturvedi</title>
    <description>The latest articles on DEV Community by Anjali Chaturvedi (@ic1101virgo).</description>
    <link>https://dev.to/ic1101virgo</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%2F453625%2F49bc8547-d754-4dbc-a0d5-0ca485363bd9.jpg</url>
      <title>DEV Community: Anjali Chaturvedi</title>
      <link>https://dev.to/ic1101virgo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ic1101virgo"/>
    <language>en</language>
    <item>
      <title>Python Prowess: Day 3</title>
      <dc:creator>Anjali Chaturvedi</dc:creator>
      <pubDate>Wed, 03 Feb 2021 19:30:06 +0000</pubDate>
      <link>https://dev.to/ic1101virgo/python-prowess-day-3-4m31</link>
      <guid>https://dev.to/ic1101virgo/python-prowess-day-3-4m31</guid>
      <description>&lt;p&gt;I have decided to write simple C++ codes in Python 3 maybe that's the way I'll get to learn the language.&lt;/p&gt;

&lt;p&gt;Code to calculate trailing zeros in a factorial n!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;def trailingzeros(self,n):
   count=0
   i=5
   while(n/i&amp;gt;=1):
       count+= int(n/i)
       i*=5
   return int(count)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;🌼Please comment if you have any suggestions or encouraging words.🌼&lt;/p&gt;

</description>
      <category>python</category>
      <category>codenewbie</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Python Prowess: Day 2</title>
      <dc:creator>Anjali Chaturvedi</dc:creator>
      <pubDate>Tue, 02 Feb 2021 14:23:04 +0000</pubDate>
      <link>https://dev.to/ic1101virgo/python-prowess-day-2-5fh7</link>
      <guid>https://dev.to/ic1101virgo/python-prowess-day-2-5fh7</guid>
      <description>&lt;p&gt;Funny got to know python has indent sensitivity along with the case sensitivity! &lt;/p&gt;

&lt;p&gt;Here is the program to calculate XOR from 1 to n&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;def xor(n) :
    if n % 4 == 0 : 
        return n 


    if n % 4 == 1 : 
        return 1


    if n % 4 == 2 : 
        return n + 1


    return 0

if __name__ == "__main__" :
    n = 5
    print(xor(n))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output - 1&lt;br&gt;
🌼Please comment if you have any suggestions or encouraging words.🌼&lt;/p&gt;

</description>
      <category>python</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Python Prowess: Day 1</title>
      <dc:creator>Anjali Chaturvedi</dc:creator>
      <pubDate>Mon, 01 Feb 2021 18:26:35 +0000</pubDate>
      <link>https://dev.to/ic1101virgo/python-prowess-day-1-3p3j</link>
      <guid>https://dev.to/ic1101virgo/python-prowess-day-1-3p3j</guid>
      <description>&lt;p&gt;I am starting my python journey today. I'll be sharing my progress and code snippets along with anything interesting I get to know! &lt;br&gt;
This is Python 3!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Basic Input-Output Snippet&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; input()
Hello world! 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output- Hello World&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; print("Hello" * 2)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt;&amp;gt;&amp;gt; print(1,2,3)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output- 1 2 3&lt;/p&gt;

&lt;p&gt;🌼Please comment if you have any suggestions or encouraging words.🌼&lt;/p&gt;

</description>
      <category>python</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Open-Source community and Hactoberfest.</title>
      <dc:creator>Anjali Chaturvedi</dc:creator>
      <pubDate>Fri, 04 Dec 2020 12:39:11 +0000</pubDate>
      <link>https://dev.to/ic1101virgo/open-source-community-and-hactoberfest-1787</link>
      <guid>https://dev.to/ic1101virgo/open-source-community-and-hactoberfest-1787</guid>
      <description>&lt;p&gt;My journey in the tech world started this October with Hactoberfest in action. I was new to opensource and GitHub, even coding. &lt;/p&gt;

&lt;p&gt;It was a journey that helped me in several ways. Hactoberfest helped me get familiarize with the opensource community. I worked on a variety of projects from website development in HTML/CSS to React, Django, Flutter, and even backend in NodeJs. And throughout I had my opensource folks having my back, helping me out. I noticed within a few days it was me who was maintaining a project and reviewing. &lt;/p&gt;

&lt;p&gt;It was a journey of growth, meeting amazing people, and learning new things. The very essence of open-source is sharing and growing. That is why I am going to work even harder and enjoy along the way!🌸 I feel really grateful to everyone.&lt;/p&gt;

&lt;p&gt;Recently I also got my Hactoberfest badge that's why I decided to write this post. 😃&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Comments and thoughts are welcomed! Do let me know about your Journey!&lt;/em&gt; 🌟&lt;/p&gt;

&lt;h1&gt;
  
  
  Happy-Coding!
&lt;/h1&gt;

</description>
      <category>hacktoberfest</category>
      <category>opensource</category>
      <category>codenewbie</category>
      <category>github</category>
    </item>
  </channel>
</rss>
