<?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: ice8980</title>
    <description>The latest articles on DEV Community by ice8980 (@ice8980).</description>
    <link>https://dev.to/ice8980</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%2F595548%2Ff4db24aa-bb6c-46b5-8a2e-7ed7bcbefff0.png</url>
      <title>DEV Community: ice8980</title>
      <link>https://dev.to/ice8980</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ice8980"/>
    <language>en</language>
    <item>
      <title>Why Programming can be Very Important</title>
      <dc:creator>ice8980</dc:creator>
      <pubDate>Wed, 12 May 2021 03:39:54 +0000</pubDate>
      <link>https://dev.to/ice8980/why-programming-can-be-very-important-4pa7</link>
      <guid>https://dev.to/ice8980/why-programming-can-be-very-important-4pa7</guid>
      <description>&lt;p&gt;Do you want to be a programmer? Well, you are in the right place. Programming is one of the most interesting things you can learn in your life. In the future, programming can be very important. Because Elon Musk is developing A.I (Artificial Intelligence) and rocket ships. Again, Programming can be very important because like the Apollo 11 mission, the Nasa Engineers need to program the Eagle to land on the moon correctly. This can also apply to other things as well like: Facebook, Instagram, etc. &lt;/p&gt;

&lt;p&gt;All in all, Programming can be very important.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>A Brief Introduction to if/else statements in Python</title>
      <dc:creator>ice8980</dc:creator>
      <pubDate>Wed, 14 Apr 2021 09:56:46 +0000</pubDate>
      <link>https://dev.to/ice8980/a-brief-introduction-to-if-else-statements-in-python-3cam</link>
      <guid>https://dev.to/ice8980/a-brief-introduction-to-if-else-statements-in-python-3cam</guid>
      <description>&lt;p&gt;Did you know if and else statements are very important in python? When we ask questions we often ask about yes or no questions and decide to do something based on the answer. For example, we might ask "are you happy" and if the answer is yes, respond "good for you!" These types of questions are called conditions, and statements. These questions can be like if/else statements in python.&lt;/p&gt;

&lt;p&gt;In this article, you'll learn about if/else statements in python. &lt;/p&gt;

&lt;p&gt;IF STATEMENTS&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;boys&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt; 
&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;boys&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'there are a lot of boys!'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;An if statement in python is just like in English. For example, in English, we can say if there are 10 boys and if the boys are greater than ten say "there are a lot of boys!" This is the same for python but in python, we need to make a variable for what boys is and add a colon (:). The if statement in the code on top of this paragraph says if the boys are greater than 10 say "there are a lot of boys!" but instead we use the print keyword.&lt;/p&gt;

&lt;p&gt;MORE INFO&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="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;age&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'you are young'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;'hellooooo'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Do you notice that inside the if statement there will be four spaces? The four spaces in very important because the four spaces tell python that the code is in the if statement. if we don't put the four spaces this error will appear.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;IndentationError: expected an indented block
KeyboardInterrupt 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This error will appear because a dumb programming language cannot understand if the code is in the if statement or not.&lt;/p&gt;

&lt;p&gt;IF THEN ELSE STATEMENTS &lt;/p&gt;

&lt;p&gt;If we want to add something if the if the condition is true we can use if then else statements.&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;boys&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;
&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;boys&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="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"there are 20 boys"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"there are not 20 boys"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The code on tops says that there are 20 boys and if there are 20 boys print "there are 20 boys" but if the condition is False print "there are not 20 boys". &lt;/p&gt;

&lt;p&gt;CONCLUSION&lt;br&gt;
In conclusion, that is if/else statements.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>3 Projects you should make in Python</title>
      <dc:creator>ice8980</dc:creator>
      <pubDate>Wed, 14 Apr 2021 09:07:54 +0000</pubDate>
      <link>https://dev.to/ice8980/10-projects-you-should-make-in-python-2g74</link>
      <guid>https://dev.to/ice8980/10-projects-you-should-make-in-python-2g74</guid>
      <description>&lt;p&gt;A Mad Libs Generator&lt;/p&gt;

&lt;p&gt;The Mad Libs Generator is a perfect project for beginners because it is just focused on strings, variables, packages input data.  &lt;/p&gt;

&lt;p&gt;Calculator &lt;br&gt;
The Calculator is a medium-skilled level for python programmers. The calculator can include Math, strings, variables, etc.&lt;/p&gt;

&lt;p&gt;Typing Speed Test&lt;br&gt;
This project can be more advanced for python beginners. Do you know the 10fastfingers website and typing.com websites? you are going to make a website like that.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to download Python</title>
      <dc:creator>ice8980</dc:creator>
      <pubDate>Sun, 28 Mar 2021 14:26:38 +0000</pubDate>
      <link>https://dev.to/ice8980/how-to-download-python-4eae</link>
      <guid>https://dev.to/ice8980/how-to-download-python-4eae</guid>
      <description>&lt;p&gt;Do you want to learn python? Python is a very beginner-friendly programming language. How do you even install python? to install python, you have to go to &lt;a href="https://www.python.org/downloads/"&gt;https://www.python.org/downloads/&lt;/a&gt; Once you have done that you should see this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jyx0ppd5gy4yyxmohjpv.PNG"&gt;https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jyx0ppd5gy4yyxmohjpv.PNG&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you see that then you are at the correct website.&lt;/p&gt;

&lt;p&gt;What version should I use?&lt;/p&gt;

&lt;p&gt;If I were you, I would pick the latest version which is Python 3.9.2 (now) But if you prefer a better syntax you should use Python 2. &lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
All in all, that is how you download and install python.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to create a Variable in python </title>
      <dc:creator>ice8980</dc:creator>
      <pubDate>Fri, 26 Mar 2021 09:55:21 +0000</pubDate>
      <link>https://dev.to/ice8980/how-to-create-a-variable-in-python-1jnb</link>
      <guid>https://dev.to/ice8980/how-to-create-a-variable-in-python-1jnb</guid>
      <description>&lt;p&gt;What is a variable?&lt;br&gt;
A variable is a very important function in python. In fact, variables arent just important in python, it is important in all programming languages like javascript Lua, etc. &lt;/p&gt;

&lt;p&gt;How do I create a variable?&lt;br&gt;
The code below is shown to how to create a variable.&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;a&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"Hello this is an example"&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;a&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Why is this important?&lt;br&gt;
Variables in very important because variables can be in many programming languages. Like javascript, C, PHP, etc. &lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
At the end of the day, Programming variables can be very important.&lt;/p&gt;

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