<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Reverse a string by </title>
      <link>https://padlet.com/shailey_chawla/inclass</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2018-11-26 05:57:59 UTC</pubDate>
      <lastBuildDate>2022-01-18 01:48:01 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/shailey_chawla/inclass/wish/1996810710</link>
         <description><![CDATA[<div><strong>def</strong> reverse_str(s):</div><div>&nbsp; str <strong>=</strong> ''</div><div>&nbsp; <strong>for</strong> i <strong>in</strong> s:</div><div>&nbsp; &nbsp; str = i + str</div><div>&nbsp; <strong>return</strong> str</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-18 01:19:15 UTC</pubDate>
         <guid>https://padlet.com/shailey_chawla/inclass/wish/1996810710</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/shailey_chawla/inclass/wish/1996814155</link>
         <description><![CDATA[<pre>def function_transfer(S, T):<br></pre><div>&nbsp; &nbsp; &nbsp;while S != []:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;T += S.pop()&nbsp;<br>&nbsp; &nbsp; &nbsp;return T<br>&nbsp;<br>print(function_transfer("python", ""))&nbsp;</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-18 01:22:16 UTC</pubDate>
         <guid>https://padlet.com/shailey_chawla/inclass/wish/1996814155</guid>
      </item>
      <item>
         <title>def reverse_str(string):</title>
         <author></author>
         <link>https://padlet.com/shailey_chawla/inclass/wish/1996817770</link>
         <description><![CDATA[<div>&nbsp; &nbsp;for i in string[len(string)::-1]:<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;print(i)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-18 01:25:39 UTC</pubDate>
         <guid>https://padlet.com/shailey_chawla/inclass/wish/1996817770</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/shailey_chawla/inclass/wish/1996837057</link>
         <description><![CDATA[<div>def rev_str(string):<br>&nbsp; &nbsp; if len(string) == 1:<br>&nbsp; &nbsp; &nbsp; &nbsp; return string<br>&nbsp; &nbsp; elif len(string) &gt; 1:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return string[-1] + rev_str(string[:-1])</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-18 01:42:13 UTC</pubDate>
         <guid>https://padlet.com/shailey_chawla/inclass/wish/1996837057</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/shailey_chawla/inclass/wish/1996844906</link>
         <description><![CDATA[<div>def reverse(string):<br>&nbsp; &nbsp; if len(string) == 0:<br>&nbsp; &nbsp; &nbsp; &nbsp; return<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; temp = string[0]<br>&nbsp; &nbsp; reverse(string[1:])<br>&nbsp; &nbsp; print(temp, end = '')<br>&nbsp; &nbsp;&nbsp;<br>string = "python"<br>reverse(string)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-18 01:48:01 UTC</pubDate>
         <guid>https://padlet.com/shailey_chawla/inclass/wish/1996844906</guid>
      </item>
   </channel>
</rss>
