<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Math 183 Python Commands by Emily Harper</title>
      <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2025-01-30 04:32:43 UTC</pubDate>
      <lastBuildDate>2025-01-30 05:38:22 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Loops</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309333883</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:04:46 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309333883</guid>
      </item>
      <item>
         <title>While Loop</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309336823</link>
         <description><![CDATA[<p>Def: Used to execute a set of statements as long as the given condition is true.</p><p><br></p><p>Syntax: </p><ul><li><p>while condition</p></li><li><p>statements</p></li><li><p>update iterator</p></li></ul><p><br></p><p>Example:</p><ul><li><p>x = 1</p></li><li><p>While x &lt; 10</p></li><li><p>print (x)</p></li><li><p>x = x + 1</p></li></ul><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:08:38 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309336823</guid>
      </item>
      <item>
         <title>For Loop</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309338804</link>
         <description><![CDATA[<p>Def: Used to execute a set of statements by iterating over a sequence</p><p><br></p><p>Syntax:</p><ul><li><p>for x in sequence:</p></li><li><p>statements</p></li></ul><p><br></p><p>Ex:</p><ul><li><p>Names = ["A", "B", "C", "D"]</p></li><li><p>For x in names:</p></li><li><p>Print(x)</p></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:11:49 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309338804</guid>
      </item>
      <item>
         <title>Function/Module Commands</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309341227</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:15:28 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309341227</guid>
      </item>
      <item>
         <title>Components of a Function</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309345363</link>
         <description><![CDATA[<p>Def: Defines a reusable block of code known as a function</p><p><br></p><p>Return: Exits a function and optionally returns a value</p><p><br></p><p>Import: Brings external modules (libraries) into your code</p><p><br></p><p>From: Imports specific attributes from a module</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:21:16 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309345363</guid>
      </item>
      <item>
         <title>How to write a function</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309350610</link>
         <description><![CDATA[<ol><li><p>Function Definition</p><ol><li><p>def Keyword</p></li><li><p>function name</p></li><li><p>parentheses ()</p></li><li><p>colon :</p></li></ol></li><li><p>Function Body</p><ol><li><p>indented block</p></li><li><p>statements</p></li><li><p>return statement</p></li></ol></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:29:51 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309350610</guid>
      </item>
      <item>
         <title>Control Flow Commands</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309350957</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:30:25 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309350957</guid>
      </item>
      <item>
         <title>Commands</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309352268</link>
         <description><![CDATA[<p>IF: executes a block of code if a condition is true</p><p><br></p><p>ELIF: tests additional conditions if the preceding IF or ELIF conditions are false</p><p><br></p><p>ELSE: executes a block of code if all preceding conditions are false</p><p><br></p><p>BREAK: exits a loop prematurely</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:32:36 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309352268</guid>
      </item>
      <item>
         <title>Built-In Functions</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309353807</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:34:53 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309353807</guid>
      </item>
      <item>
         <title>Commonly Used Commands</title>
         <author>emilyharper2304</author>
         <link>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309355830</link>
         <description><![CDATA[<p>Print (object): used to print messages or other output</p><p><br></p><p>Type (object): used to check the  type or class of an object</p><p><br></p><p>Range (start, stop, step): generates a sequence of integers starting @ 0 by default</p><p><br></p><p>Len(object) : used for # of items in an object</p><p><br></p><p>Append (element): used to add an element at the end of a list</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-30 05:38:21 UTC</pubDate>
         <guid>https://padlet.com/emilyharper2304/38kesvu55n156xx8/wish/3309355830</guid>
      </item>
   </channel>
</rss>
