<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Blissful Python Beginner Class 2 by Jibran Absarulislam</title>
      <link>https://padlet.com/jga26/qq8stta6uc2ul1sn</link>
      <description>Instructors: Dean &amp; Morgan</description>
      <language>en-us</language>
      <pubDate>2022-03-05 00:29:02 UTC</pubDate>
      <lastBuildDate>2022-03-23 21:09:28 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>README</title>
         <author>jga26</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2078764332</link>
         <description><![CDATA[<div>On this padlet, your instructors will post the slides from class! You will post your work and any questions under each week.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-05 00:29:02 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2078764332</guid>
      </item>
      <item>
         <title>Zoom Link!</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2082525525</link>
         <description><![CDATA[<div>https://zoom.us/j/3381160290?pwd=dzJqTzZpNm8xeVl3Wk9LOS8xR1l3dz09</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-07 20:45:38 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2082525525</guid>
      </item>
      <item>
         <title>Homework 1</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2086957225</link>
         <description><![CDATA[<div>Create a total of 6 variables: 3 integers and 3 strings</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-09 21:30:40 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2086957225</guid>
      </item>
      <item>
         <title>Summary of Week 1</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2086993021</link>
         <description><![CDATA[<div>Python is one of the first programming languages many people learn; it is simple and applies to many job fields<br><br>Sign up for a replit account at replit.com in order to code Python projects<br><br>Replit can do math in the console, try it yourself!<br><br>We learned about two data types: strings and integers. Integers are whole numbers, while strings are words or strings of characters surrounded by double quotes ("), such as "pineapple"<br><br>Variables can be used to store data types<br>like<br>number = 42<br>word = "pineapple"<br>number and word are variables</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-09 22:07:07 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2086993021</guid>
      </item>
      <item>
         <title>Summary of Week 2</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2098820205</link>
         <description><![CDATA[<div>type() is a function that can tell us what data type something is<br><br>Boolean is another data type that can only hold the values True and False<br><br>The print() function can be used to see variables in the console<br><br>We type code in the left side instead of the console to run it and save it<br><br>Lists are another data type that can store multiple elements; an example of a list is<br><br>fruits = ["strawberry", "pineapple", "mango", "kiwi"]<br><br>Lists can have indexes starting at 0, just like strings<br><br>i.e. print(list[0]) will print out the first element of a list</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-16 21:09:22 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2098820205</guid>
      </item>
      <item>
         <title>Homework 2</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2098821907</link>
         <description><![CDATA[<div>Store a list of 3 animals and use an index and the print() function to output one of the animals</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-16 21:10:58 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2098821907</guid>
      </item>
      <item>
         <title>Homework 3</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2110558652</link>
         <description><![CDATA[<div>Write code where if the animal is a dog, print “cute”. If the animal is a cat (not dog), print out “sweet”. If it is not a cat or a dog, print out “oh no”.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-23 21:05:17 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2110558652</guid>
      </item>
      <item>
         <title>Summary of Week 3</title>
         <author>dmj28</author>
         <link>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2110562986</link>
         <description><![CDATA[<div>If Statements are conditional statements that depend on something<br><br>In everyday life: if you are hungry, then eat; if you are tired, then go to sleep<br><br>In Python<br>name = "Megan"<br>if name == "Megan":<br>&nbsp; &nbsp;print("I know your name")<br><br>If the variable name is equal to "Megan", then the code will print "I know your name"<br><br>Single equals sign (=) is used for assigning variables, like name = "Megan"<br><br>Double equals sign (==) is used for checking for equality, like if name == "Megan"<br><br>Additional elif and else statements can be added: elif is else if (essentially another if statement) and else occurs when none of the above cases are true.<br><br>name = "Megan"<br>if name == "Megan":<br>&nbsp; &nbsp;print("I know your name")<br>elif name == "Steph":<br>&nbsp; &nbsp;print("I know you too")<br>else:<br>   print("I don't know you")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-23 21:09:28 UTC</pubDate>
         <guid>https://padlet.com/jga26/qq8stta6uc2ul1sn/wish/2110562986</guid>
      </item>
   </channel>
</rss>
