<?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: Khaled Mohamed</title>
    <description>The latest articles on DEV Community by Khaled Mohamed (@muhamad_khaled).</description>
    <link>https://dev.to/muhamad_khaled</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%2F447915%2F9f80ce7c-aedd-4142-90c0-e6911c94a54d.jpg</url>
      <title>DEV Community: Khaled Mohamed</title>
      <link>https://dev.to/muhamad_khaled</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/muhamad_khaled"/>
    <language>en</language>
    <item>
      <title>Programming for everybody (getting started with python) course summary</title>
      <dc:creator>Khaled Mohamed</dc:creator>
      <pubDate>Sat, 03 Oct 2020 01:39:47 +0000</pubDate>
      <link>https://dev.to/muhamad_khaled/programming-for-everybody-getting-started-with-python-course-summary-115j</link>
      <guid>https://dev.to/muhamad_khaled/programming-for-everybody-getting-started-with-python-course-summary-115j</guid>
      <description>&lt;p&gt;Hi!&lt;/p&gt;

&lt;p&gt;I hope you're all OK&lt;/p&gt;

&lt;p&gt;so let us begin summarizing Programming for Everybody (Getting Started with Python) course&lt;/p&gt;

&lt;p&gt;Before you read this summary there's some points you should know:&lt;/p&gt;

&lt;p&gt;1- English IS NOT my native language so you maybe face some writing mistakes or another kind of that stuff.&lt;/p&gt;

&lt;p&gt;2- I will not tell you everything about this course I will just SUMMARIZE it, So if you didn't find some condition or function here then that doesn't mean it's not explained in the course&lt;/p&gt;

&lt;p&gt;3- It's my first experiment with summarizing courses so my summary will be awful, ('m not joking) so if you found another summary for this course just tell me in the comments&lt;/p&gt;

&lt;p&gt;Now after all that bla bla bla let me begin&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 1
&lt;/h2&gt;

&lt;p&gt;In this week the instructor will welcome you and explain to you some basic things about hardware, python and programming in general, So ... let's go to the next week.&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 2
&lt;/h2&gt;

&lt;p&gt;This week is about how will you use python in this course, where will you write python code and all that stuff&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 3
&lt;/h2&gt;

&lt;p&gt;Your first assignment: "Hello world"!!&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 4
&lt;/h2&gt;

&lt;p&gt;Some expressions and assignments&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 5
&lt;/h2&gt;

&lt;p&gt;Conditional statement&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 6
&lt;/h2&gt;

&lt;p&gt;Functions&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 7
&lt;/h2&gt;

&lt;p&gt;Loops and iteration&lt;/p&gt;

&lt;h2&gt;
  
  
  Detailed notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;try - except:&lt;/strong&gt; the code after "try" will be tried if it works, great, if not: the code after except will work. in other words: you give the computer alternative code to run if the first code didn't run
&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;age&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;input&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"what's your age?"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="k"&gt;try&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="n"&gt;Int&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;int&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;age&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="k"&gt;except&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;"error, please enter a number"&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;
&lt;strong&gt;"elif"&lt;/strong&gt; is a condition which used in a function to add another question without building a new block or in other words " without making a new function". another thing: if elif condition is true then it ignores the next whole conditions in its function.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;"continue"&lt;/strong&gt; stops the current iteration and goes to the top of the loop again&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;"Break"&lt;/strong&gt; when you type it in a function body it skips the remaining code lines in the function body or skip the remaining function to the next line after all the function immediately&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;None&lt;/strong&gt; is a kind of variables has only "None" variable like boolean (which has true and false) Warning: You MUST write "None" not "none"
&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;smallest&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="bp"&gt;None&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;finally you reached the end of this post so if you reached these words thanks a lot for reading my summary. Please give me a feedback so I can improve my summaries in the future!&lt;br&gt;
see you in another post (or summary I don't know)&lt;/p&gt;

</description>
      <category>python</category>
      <category>coursera</category>
      <category>course</category>
      <category>summary</category>
    </item>
    <item>
      <title>How to get a job as a back end web developer?</title>
      <dc:creator>Khaled Mohamed</dc:creator>
      <pubDate>Wed, 12 Aug 2020 19:36:58 +0000</pubDate>
      <link>https://dev.to/muhamad_khaled/how-to-get-a-job-as-a-back-end-web-developer-2mla</link>
      <guid>https://dev.to/muhamad_khaled/how-to-get-a-job-as-a-back-end-web-developer-2mla</guid>
      <description>&lt;p&gt;Hi!&lt;br&gt;
I hope you're all OK ;)&lt;br&gt;
I'm Khaled and I'm 16.&lt;br&gt;
I want to get a job as a back end web developer so I learned until now: HTML5, CSS3, JS&lt;br&gt;
my next step is to follow this path from coursera:&lt;br&gt;
&lt;a href="https://careers.coursera.org/back-end-developer/"&gt;https://careers.coursera.org/back-end-developer/&lt;/a&gt;&lt;br&gt;
and then I will start searching for a job.&lt;br&gt;
So my question is: can I get a job after finishing this path? Or I must take other courses?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>backend</category>
      <category>jobs</category>
    </item>
  </channel>
</rss>
