<?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: Joeches</title>
    <description>The latest articles on DEV Community by Joeches (@joeches).</description>
    <link>https://dev.to/joeches</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%2F573725%2Fa9c5b7cf-a37f-425f-a26a-938418192b8b.jpeg</url>
      <title>DEV Community: Joeches</title>
      <link>https://dev.to/joeches</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joeches"/>
    <language>en</language>
    <item>
      <title>Python If Statements
</title>
      <dc:creator>Joeches</dc:creator>
      <pubDate>Thu, 04 Feb 2021 20:41:54 +0000</pubDate>
      <link>https://dev.to/joeches/python-if-statements-365i</link>
      <guid>https://dev.to/joeches/python-if-statements-365i</guid>
      <description>&lt;p&gt;x = 10&lt;br&gt;
if x != 0:&lt;br&gt;
if x % 2 == 0:&lt;br&gt;
print('even number')&lt;br&gt;
else:&lt;br&gt;
print('odd number')&lt;br&gt;
elif x == 0:&lt;br&gt;
print('equal to zero')&lt;br&gt;
elif x &amp;gt; 0:&lt;br&gt;
for i in range(2,x):&lt;br&gt;
if i % 2 == 0:&lt;br&gt;
print('not a prime number')&lt;br&gt;
else:&lt;br&gt;
print('prime number')&lt;br&gt;
else:&lt;br&gt;
print('less than zero')&lt;/p&gt;

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