<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>PYTHON by Jonathan Steven</title>
      <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh</link>
      <description>Hecho con mucha energia y en clase</description>
      <language>en-us</language>
      <pubDate>2018-07-10 16:27:11 UTC</pubDate>
      <lastBuildDate>2020-08-14 21:44:25 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Programación Procesal</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365540</link>
         <description><![CDATA[<div>Los conceptos que aprendemos en este curso son necesarios, pero no suficientes, para diseñar aplicaciones y programas avanzados. Cada programa que puede escribir utiliza los conceptos de los que hablamos aquí, pero mucho más se aplica a los programas avanzados que usa a diario. Este es el primer paso.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:37:39 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365540</guid>
      </item>
      <item>
         <title>Programación Funcional</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365608</link>
         <description><![CDATA[<div><strong>Función:</strong> un segmento de código que realiza una tarea específica, a veces tomando alguna entrada y algunas veces devolviendo alguna salida.<br><br></div><div><strong><br>Método:</strong> una función que es parte de una clase en la programación orientada a objetos (pero coloquialmente, a menudo se usa indistintamente con la función).<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:38:21 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365608</guid>
      </item>
      <item>
         <title>HELLO WORLD</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365673</link>
         <description><![CDATA[<div>#Prints the text "Hello, world"<br>print("Hello, world")<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:39:14 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365673</guid>
      </item>
      <item>
         <title>Comentarios y documentación</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365834</link>
         <description><![CDATA[<div>#Countdown function<br>#Prints the numbers from 1 to i<br>#on a single line<br>def countdown(i):<br>    for j in range(1,i + 1):<br>        print(j, end = " ")<br>    print()<br>countdown(10)<br>countdown(5)<br>countdown(2)<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:40:53 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270365834</guid>
      </item>
      <item>
         <title>Variables ( ejemplos )</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366139</link>
         <description><![CDATA[<pre>numberOfCreditHours = 15</pre><div><br></div><pre>numberOfClasses = "sandwich"</pre><div><br></div><pre>birthYear = 1995</pre><div><br></div><pre>eyeColor = "blue"</pre><div><br></div><pre>academicMajor = 5.2</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:43:08 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366139</guid>
      </item>
      <item>
         <title>ejercicio con variables</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366221</link>
         <description><![CDATA[<div>from datetime import date<br>#Creates aNumber with the value -2<br>aNumber = -2<br>#Creates aDecimal with the value 7.1<br>aDecimal = 7.1<br>#Creates aString with the value "Hello, #world"<br>aString = "Hello, world!"<br>#Creates aBoolean with the value True<br>aBoolean = True<br>#Creates aDate with the value of today's date<br>aDate = date.today()<br>print(aNumber)<br>print(aDecimal)<br>print(aString)<br>print(aBoolean)<br>print(aDate)</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:44:01 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366221</guid>
      </item>
      <item>
         <title>Asignación de variables</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366416</link>
         <description><![CDATA[<div>myNumber = 5<br>print(myNumber)<br>5 = myNumber<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:45:33 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366416</guid>
      </item>
      <item>
         <title>Tipos de datos</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366549</link>
         <description><![CDATA[<div>myInteger = 5<br>print(type(myInteger))<br>#Adding the .0 forces this to become a float<br>myFloat = 5.0<br>print(type(myFloat))<br>#Putting it in quotes makes it a string<br>myString = "5.0"<br>print(type(myString))<br>#The words 'True' and 'False' are reserved<br>#for boolean values<br>myBoolean = True	<br>print(type(myBoolean))<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:47:12 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366549</guid>
      </item>
      <item>
         <title>Conversiones de tipo</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366627</link>
         <description><![CDATA[<div>myIntAsString = "5"<br>myInt = int(myIntAsString)<br>print(type(myInt))<br><br>myFloatAsString = "5.1"<br>myFloat = float(myFloatAsString)<br>print(type(myFloat))<br><br>myBooleanAsString = "True"<br>myBoolean = bool(myBooleanAsString)<br>print(type(myBoolean))<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:47:52 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366627</guid>
      </item>
      <item>
         <title>Notación de puntos</title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366899</link>
         <description><![CDATA[<div>from datetime import date<br>myDate = date.today()<br>print(myDate.year)<br>print(myDate.month)<br>print(myDate.day)<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-07-17 02:50:31 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/270366899</guid>
      </item>
      <item>
         <title></title>
         <author>1000285817dinoempanada</author>
         <link>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/681052498</link>
         <description><![CDATA[<div>Puta madree</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-08-14 21:43:04 UTC</pubDate>
         <guid>https://padlet.com/1000285817dinoempanada/l6sbvzbtivmh/wish/681052498</guid>
      </item>
   </channel>
</rss>
