<?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: anisa</title>
    <description>The latest articles on DEV Community by anisa (@anisa12).</description>
    <link>https://dev.to/anisa12</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%2F3964125%2F2c15fc3d-4593-4006-a2ef-9cd1c7089251.png</url>
      <title>DEV Community: anisa</title>
      <link>https://dev.to/anisa12</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anisa12"/>
    <language>en</language>
    <item>
      <title>Day 2 Learning Python</title>
      <dc:creator>anisa</dc:creator>
      <pubDate>Tue, 02 Jun 2026 11:10:25 +0000</pubDate>
      <link>https://dev.to/anisa12/day-2-learning-python-2k7i</link>
      <guid>https://dev.to/anisa12/day-2-learning-python-2k7i</guid>
      <description>&lt;h1&gt;
  
  
  Python Day Two : Python Output &amp;amp; Print
&lt;/h1&gt;

&lt;p&gt;print() is a Python🐍 command used to show something on the screen.&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="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;Pure Pearl Foundation&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;ul&gt;
&lt;li&gt;print → tells Python to display output&lt;/li&gt;
&lt;li&gt;"Pure Pearl Foundation" → the text to show on the screen&lt;/li&gt;
&lt;li&gt;Text must be inside quotation marks " "&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Output:&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;Pure&lt;/span&gt; &lt;span class="n"&gt;Pearl&lt;/span&gt; &lt;span class="n"&gt;Foundation&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  Print Number
&lt;/h1&gt;

&lt;p&gt;print() can also display numbers in Python.&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="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;70&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;80&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;90&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Explanation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Numbers are written without quotation marks.&lt;/li&gt;
&lt;li&gt;Python treats them as real numbers, not text.&lt;/li&gt;
&lt;li&gt;Each print() shows the number on a new line.&lt;/li&gt;
&lt;/ul&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;70
80
90
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  Calculation
&lt;/h1&gt;

&lt;p&gt;You can do calculations directly inside print() in Python.&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="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;50&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&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;5&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Explanation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;+ means addition&lt;/li&gt;
&lt;li&gt;- means subtraction&lt;/li&gt;
&lt;li&gt;/ means division&lt;/li&gt;
&lt;li&gt;* means multiplication&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Output:&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="mi"&gt;20&lt;/span&gt;
&lt;span class="mi"&gt;0&lt;/span&gt;
&lt;span class="mf"&gt;10.0&lt;/span&gt;
&lt;span class="mi"&gt;25&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  combine text and numbers
&lt;/h1&gt;

&lt;p&gt;You can combine text and numbers in one print() statement by separating them with commas.&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="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;Pure Pearl Foundation has&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;15&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Student Volunteers&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;Explanation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Pure Pearl Foundation has" → text&lt;/li&gt;
&lt;li&gt;15 → number&lt;/li&gt;
&lt;li&gt;"Student Volunteers" → text&lt;/li&gt;
&lt;li&gt;Commas , join them together in one output.
Output:
&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;Pure&lt;/span&gt; &lt;span class="n"&gt;Pearl&lt;/span&gt; &lt;span class="n"&gt;Foundation&lt;/span&gt; &lt;span class="n"&gt;has&lt;/span&gt; &lt;span class="mi"&gt;15&lt;/span&gt; &lt;span class="n"&gt;Student&lt;/span&gt; &lt;span class="n"&gt;Volunteers&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every expert programmer started as a beginner. Keep practicing, stay consistent, and trust the learning process. Small steps lead to big success. 🚀💻&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>python</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Easy Way To learn Python For Begginers</title>
      <dc:creator>anisa</dc:creator>
      <pubDate>Tue, 02 Jun 2026 10:51:55 +0000</pubDate>
      <link>https://dev.to/anisa12/easy-way-to-learn-python-for-begginers-2115</link>
      <guid>https://dev.to/anisa12/easy-way-to-learn-python-for-begginers-2115</guid>
      <description>&lt;h1&gt;
  
  
  Day 1 learning python:Introduction to python
&lt;/h1&gt;

&lt;p&gt;python is a popular programming language.&lt;br&gt;
python used for :&lt;br&gt;
web development (server-side)&lt;br&gt;
software development&lt;br&gt;
mathematics&lt;br&gt;
python can be used on a server to creaet web application.&lt;br&gt;
python can be used alongside software to create workflows.&lt;br&gt;
what python do:&lt;/p&gt;

&lt;h1&gt;
  
  
  example
&lt;/h1&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;Anisa&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;Learning Python is a valuable skill because it opens many career opportunities in technology. As a beginner, you do not need prior programming experience to start. By practicing regularly and building small projects, you can gradually develop your coding skills. Every expert programmer started as a beginner, so stay curious, be patient, and keep learning. With dedication and practice, you can use Python to create useful programs and achieve your goals in technology.&lt;/p&gt;

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