<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Class in python by sean yang</title>
      <link>https://padlet.com/seanyang89757/week7</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2018-09-04 14:32:02 UTC</pubDate>
      <lastBuildDate>2025-12-16 18:33:07 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-assets.s3.amazonaws.com/icons/Apple.png</url>
      </image>
      <item>
         <title>Local variable</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692514</link>
         <description><![CDATA[<div>– Can only be accessed within the function it was defined<br>– Exists until the function exists <br> </div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:07:10 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692514</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692534</link>
         <description><![CDATA[<div>class variable: a, b<br>instance variable: self.x, self.y<br>local variable: N/A</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:07:17 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692534</guid>
      </item>
      <item>
         <title>Instance Variable</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692569</link>
         <description><![CDATA[<div>– Associated to individual objects and are <em>unique </em>to each other<br>– Local to the class and cannot be accessed outside of the class&nbsp;<br>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:07:33 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692569</guid>
      </item>
      <item>
         <title>Answer</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692612</link>
         <description><![CDATA[<div>Class variable a and b<br>Instance variable self.x and self.y</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:07:43 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692612</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692762</link>
         <description><![CDATA[<div><br><br>self.x, self.y are instance variables<br>a, b are class variables<br><br></div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:08:30 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692762</guid>
      </item>
      <item>
         <title>Class Variables</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692768</link>
         <description><![CDATA[<div>– Define outside the body of any methods in a class<br>– Global in scope and can be accessed both inside and outside of<br>the class&nbsp;<br>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:08:33 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692768</guid>
      </item>
      <item>
         <title>Class variable - a,b </title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692774</link>
         <description><![CDATA[<div>Instance Variables - self, x, y </div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:08:36 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692774</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692811</link>
         <description><![CDATA[<div>present object data values as a string for output<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:08:52 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692811</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692891</link>
         <description><![CDATA[<div>Local variable - scope is only in the function or block it is defined in. eg. if a variable is defined in any function other than a constructor<br><br>Instance variable - scope is one particular instance of a class. eg. the value of one particular card<br><br>Class variable - variable that is common to all instances of a class. e.g. count variable used keep track of total number of cards dealt.</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:09:22 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692891</guid>
      </item>
      <item>
         <title>_str_</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278692905</link>
         <description><![CDATA[<div>string: classifies chracters</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:09:27 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278692905</guid>
      </item>
      <item>
         <title>Revisit: Card Class</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693116</link>
         <description><![CDATA[<div> class Card:<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:10:49 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693116</guid>
      </item>
      <item>
         <title>instance variable - self.x and self.y</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693177</link>
         <description><![CDATA[<div>class variable - a,b<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:11:07 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693177</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693184</link>
         <description><![CDATA[<div>Built in unction of python using for string representation.</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:11:11 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693184</guid>
      </item>
      <item>
         <title>---instance variable ,self.x and self.y</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693275</link>
         <description><![CDATA[<div>---</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:11:51 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693275</guid>
      </item>
      <item>
         <title>Scopes</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693374</link>
         <description><![CDATA[<div>Local variable --- that particular function or block of code&nbsp;<br><br>Instance variable --- particular instance of the class<br><br>Class variable --- any piece of code where the class in used</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:12:27 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693374</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693740</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/310046711/b7016f5376b085f5d7527d9c83a0061c/15362828774838845330425613500386.jpg" />
         <pubDate>2018-09-07 01:14:53 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693740</guid>
      </item>
      <item>
         <title>__str__</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693813</link>
         <description><![CDATA[<div>used allow the programmer to overload and to specify a string notation for a class</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:15:21 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693813</guid>
      </item>
      <item>
         <title>__str__(self):</title>
         <author></author>
         <link>https://padlet.com/seanyang89757/week7/wish/278693943</link>
         <description><![CDATA[<div>__str__(self):<br>&nbsp; &nbsp; return str(self.value) + " of " +         self.suit</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-07 01:16:18 UTC</pubDate>
         <guid>https://padlet.com/seanyang89757/week7/wish/278693943</guid>
      </item>
   </channel>
</rss>
