<?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: Mashad-pixel</title>
    <description>The latest articles on DEV Community by Mashad-pixel (@mashadpixel).</description>
    <link>https://dev.to/mashadpixel</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%2F4008568%2F3000a2dc-1245-402d-a450-300618564ab1.jpg</url>
      <title>DEV Community: Mashad-pixel</title>
      <link>https://dev.to/mashadpixel</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mashadpixel"/>
    <language>en</language>
    <item>
      <title>Think</title>
      <dc:creator>Mashad-pixel</dc:creator>
      <pubDate>Mon, 29 Jun 2026 17:46:18 +0000</pubDate>
      <link>https://dev.to/mashadpixel/think-2i33</link>
      <guid>https://dev.to/mashadpixel/think-2i33</guid>
      <description>&lt;p&gt;Print = "Hello World!"&lt;br&gt;
Print(Print) #why is this wrong&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>made a calculator</title>
      <dc:creator>Mashad-pixel</dc:creator>
      <pubDate>Mon, 29 Jun 2026 17:22:44 +0000</pubDate>
      <link>https://dev.to/mashadpixel/made-a-calculator-512</link>
      <guid>https://dev.to/mashadpixel/made-a-calculator-512</guid>
      <description>&lt;p&gt;num1 = float(input("enter a number :"))&lt;br&gt;
symb = input("enter (+,-,*,/) :")&lt;br&gt;
num2 = float(input("enter a number :"))&lt;/p&gt;

&lt;p&gt;if symb == "+":&lt;br&gt;
    print("Answer =",num1+num2)&lt;br&gt;
elif symb == "-":&lt;br&gt;
    print("Answer =",num1-num2)&lt;br&gt;
elif symb == "*":&lt;br&gt;
    print("Answer =",num1*num2)&lt;br&gt;
elif symb == "/":&lt;br&gt;
    if num2 != 0: #not to get an infinite loop as anything divided by zero is not defined&lt;br&gt;
        print("Answer =",num1/num2)&lt;br&gt;
    else:&lt;br&gt;
        print("Not defined as the num1 is divided by zero")&lt;br&gt;
else:&lt;br&gt;
    print("invalid symb")&lt;/p&gt;

&lt;p&gt;print()&lt;br&gt;
print("Calculate anything else, I'm thee for you")&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>calculator for beginner</title>
      <dc:creator>Mashad-pixel</dc:creator>
      <pubDate>Mon, 29 Jun 2026 17:20:38 +0000</pubDate>
      <link>https://dev.to/mashadpixel/calculator-for-beginner-237p</link>
      <guid>https://dev.to/mashadpixel/calculator-for-beginner-237p</guid>
      <description>&lt;p&gt;num1 = float(input("enter a number :"))&lt;br&gt;
symb = input("enter (+,-,*,/) :")&lt;br&gt;
num2 = float(input("enter a number :"))&lt;/p&gt;

&lt;p&gt;if symb == "+":&lt;br&gt;
    print("Answer =",num1+num2)&lt;br&gt;
elif symb == "-":&lt;br&gt;
    print("Answer =",num1-num2)&lt;br&gt;
elif symb == "*":&lt;br&gt;
    print("Answer =",num1*num2)&lt;br&gt;
elif symb == "/":&lt;br&gt;
    if num2 != 0: #not to get an infinite loop as anything divided by zero is not defined&lt;br&gt;
        print("Answer =",num1/num2)&lt;br&gt;
    else:&lt;br&gt;
        print("Not defined as the num1 is divided by zero")&lt;br&gt;
else:&lt;br&gt;
    print("invalid symb")&lt;/p&gt;

&lt;p&gt;print()&lt;br&gt;
print("Calculate anything else, I'm there for you")&lt;/p&gt;

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