<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Forward School DS Day 1 Submissions by Daren Tan</title>
      <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue</link>
      <description>October 2020 Cohort</description>
      <language>en-us</language>
      <pubDate>2020-10-16 06:35:22 UTC</pubDate>
      <lastBuildDate>2020-10-18 01:11:46 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Introduction Card</title>
         <author>darentanwork</author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/834899207</link>
         <description><![CDATA[<div><br>Name &amp; Age: </div><div><br>Job/Company: </div><div><br>What's your motivation?:</div><div><br>What's your expectation?: </div><div><br>What do you hope to gain from this 17 weeks bootcamp?:</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-16 06:40:20 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/834899207</guid>
      </item>
      <item>
         <title>Name: Daren_QuickExercise2</title>
         <author>darentanwork</author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837380485</link>
         <description><![CDATA[<div>// SUBMIT YOUR ANSWER HERE</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:01:08 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837380485</guid>
      </item>
      <item>
         <title>Ping_QuickExercise2</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837398970</link>
         <description><![CDATA[<div>def biggest(a,b,c):<br>    if a &gt; b and a &gt; c:<br>        return a<br>    elif b &gt; c and b &gt; a:<br>        return b<br>    else:<br>        return c<br><br><br><br><br>"This is a fox","it is hungry","it is running home"<br>""<br>h<br>i<br><br>this,is,a,fox,it,is,hungry,it,is,running,home<br><br><br>#Just the first part of the quote<br>s=pythagoras.find(",")<br>print(pythagoras[:s])<br><br>#Just the first part of the quote<br>e=pythagoras.find(",")<br>s=pythagoras.find(".")<br>print(pythagoras[e+1:s])<br><br>#Just the author<br>e=pythagoras.find("-")<br>print(pythagoras[e+1:])<br><br><br><br>#slice profession<br>#Slice the profession<br>e=len(data_vs_info)<br>s=data_vs_info.find("sc")<br>print(data_vs_info[s:e])<br><br>#slice quote<br>s=data_vs_info.find(".")<br>data_vs_info.find(".")<br>print(data_vs_info[:s])</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:31 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837398970</guid>
      </item>
      <item>
         <title>Jordan</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399012</link>
         <description><![CDATA[<div>d d<br>G G<br>Go o<br>o o<br>g g<br><br>Exercise2<br>Good morning<br>Good morning<br>Good mornin<br>Good morning<br>Good morning<br><br>Profession<br>data_vs_info[107:129]<br><br>Quote<br>quote_index = data_vs_info.find("You can have data without information, but you cannot have information without data")<br>coma_index = data_vs_info.find(".",quote_index+1)<br>data_vs_info[quote_index:coma_index]<br><br>1st quote<br>t1 = pythagoras.find(",")<br>pythagoras[0:t1]<br><br>2nd quote<br>t2 = pythagoras.find(".")<br>pythagoras[t1+2:t2]<br><br>author's name<br>t3 = pythagoras.find("-")<br>pythagoras[t3+1:]<br><br>Split<br>'This is a fox',  ' it is hungry', ' it is running home.'<br>This is a fox<br> it is hungry<br> it is running home.<br>This is a fox, it is hungry, it is running home.<br><br>Exercise 3<br>def F2C(farenheit):<br>    "function: returns results in celsius"<br>    celsius = ((int(farenheit)-32)*5)/9<br>    print(celsius,"C")<br><br>Exercise 4<br>def biggest(a,b,c):<br>    "function:to get the largest value out of 3 inputs"<br>    if (a &gt;= b) and (a &gt;= c):<br>        largest = a<br>    elif (b &gt;= a) and (b &gt;= c):<br>        largest = b<br>    else:<br>        largest = c<br>        <br>    print(largest)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:36 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399012</guid>
      </item>
      <item>
         <title>Kavien</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399017</link>
         <description><![CDATA[<div>d d<br>G G<br>Go o<br>o o<br>g g<br><br>exercise 2 <br>Good Morning<br>Good Morning<br>Good Mornin<br>Good Morning<br>Good Morning<br><br># Slice the profession.  <br>profession_index =data_vs_info.find('science')<br>print (data_vs_info[profession_index:])<br><br># Slice the quote only<br>quote_index =data_vs_info.find('~')<br><br>print (data_vs_info[:quote_index])<br><br>Task 1 <br><br>#First Part<br>index_phy_com = pythagoras.find (',')<br>print (pythagoras[:index_phy_com])<br><br>#Second Part<br>index_phy_second =  pythagoras.find ('.')<br>print (pythagoras[index_phy_com + 2 :index_phy_second])<br><br><br>#Third Part <br>index_author =  pythagoras.find ('-')<br>print (pythagoras[index_author+1:])<br><br><br><br>['This is a fox', ' it is hungry', ' it is running home.']<br>This is a fox<br> it is hungry<br> it is running home.<br>This is a fox, it is hungry, it is running home.</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:36 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399017</guid>
      </item>
      <item>
         <title>Emerson_QuickExcercise2</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399034</link>
         <description><![CDATA[<div>d d<br>G G<br>Go o<br>o o<br>g g  <br><br><strong>Emerson_QuickExcericise 2.1<br></strong>Good morning<br>Good morning<br>Good mornin<br>Good morning<br>Good morning<br><br><strong>Emerson_QuickExcercise 2.2<br></strong>author_index = data_vs_info.find('science')<br>print(data_vs_info[author_index:])<br><br><br>quote_end = data_vs_info.find('.')<br>print(data_vs_info[0:quote_end])<br><br><strong>Task 1<br>#first part of the quote<br></strong>quote_first_end = pythagoras.find(',')<br>print(pythagoras[0:quote_first_end])<br><br><strong>#second part of the quote</strong><br>quote_second_start = pythagoras.find('there')<br>quote_second_end = pythagoras.find('.')<br>print(pythagoras[quote_second_start:quote_second_end])<br><br><strong>#author of the quote</strong><br>author_index=pythagoras.find('Pythagoras')<br>print(pythagoras[author_index:])<br><br><strong>String split and join<br></strong>['This is a fox', 'it is hungry', 'it is running home']<br>This is a fox<br>it is hungry<br>it is running home<br>This is a fox, it is hungry, it is running home</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:40 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399034</guid>
      </item>
      <item>
         <title>Yong</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399057</link>
         <description><![CDATA[<div>T  <br>h i i<br>i t t <br>'This is a foxu it is hungryu it is running home.'</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:45 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399057</guid>
      </item>
      <item>
         <title>Suying_QuickEx2(i)</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399105</link>
         <description><![CDATA[<div>d d<br>G G<br>Go o<br>o o<br>g g<br><br>Suying_QuickEx2(ii)<br>Good morning<br>Good morning<br>Good mornin<br>Good morning<br>Good morning<br><br>Suying_Task1<br>print(data_vs_info[data_vs_info.index("D"):data_vs_info.index("science")-3])<br>print(data_vs_info[data_vs_info.index("science"):])<br>print(data_vs_info[:data_vs_info.index("D")-2])<br><br>pythagoras = "There is geometry in the humming of the \<br>strings, there is music in the spacing of the spheres. \<br>-Pythagoras"<br>print(pythagoras[:pythagoras.index(",")])<br>print(pythagoras[pythagoras.index(",")+2:pythagoras.index("-")])<br>print(pythagoras[pythagoras.index("P"):])<br><br><strong>SPLIT</strong><br>'This is a fox', 'it is hungry', 'it is running home.'<br>This is a fox<br>it is hungry<br>it is running home<br>This is a fox, it is hungry, it is running home.</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:49 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399105</guid>
      </item>
      <item>
         <title>Yeoh</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399122</link>
         <description><![CDATA[<div>d,d<br>G,G<br>Go, o<br>o o<br><br>exercise 2<br>Good morning<br>Good morning <br>Good mornin<br>Good morning<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:45:51 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399122</guid>
      </item>
      <item>
         <title>Micha_QuickExercise2</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399253</link>
         <description><![CDATA[<div>def biggest(a, b, c):<br>    if a &gt; b:<br>        return a<br>    elif b &gt; c:<br>        return b<br>    else:<br>        return c<br>    <br>biggest(428, 20, -98)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:46:12 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399253</guid>
      </item>
      <item>
         <title>Nurul-QuickExercise2</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399370</link>
         <description><![CDATA[<div>1. 'This is a fox' , 'it is hungry' , 'it is running home.'<br>2. This is a fox<br>3. it is hungry<br>4. it is running home<br>5. 'This is a fox , it is hungry , it is running home.'</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 05:46:30 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837399370</guid>
      </item>
      <item>
         <title>CheeBeng_QuickExercise1</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837454773</link>
         <description><![CDATA[<div>def checksum(num1,num2):<br>    "return sum of two integer. however, if the sum between 15 and 20 it will return 20"<br>    total  = num1 + num2<br>    if total&gt;=15 and total&lt;=20:<br>        return 20<br>    else:<br>        return total<br>    <br>print(checksum(9,9))<br>print(checksum(20,-2))<br>print(checksum(-2,50))<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 07:53:23 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837454773</guid>
      </item>
      <item>
         <title>Emerson_QuickExcercise3</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837454829</link>
         <description><![CDATA[<div>def F2C(fahrenheit):<br>    "This is a function that will return fahrenheit to celsius"<br>    return ((fahrenheit - 32) * 5) / 9<br><br><strong>Excercise 4</strong><br>def biggest(a,b,c):<br>    "This function takes in three parameters and will return the highest number"<br>     if(a &gt;= b) and (a &gt;= c):<br>          return a<br>     elif(b &gt;=c) and (b&gt;=a):<br>         return b<br>     else:<br>          return c<br>print(biggest(5,3,2)) <strong>#5<br></strong>print(biggest(5,8,2)) <strong>#8</strong><br>print(biggest(5, 8, 22)) <strong>#22</strong><br> </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 07:53:31 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837454829</guid>
      </item>
      <item>
         <title>Kavien Exe 3 </title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837456645</link>
         <description><![CDATA[<div>def F2C(Farenheit):<br>    "This function convert  Farenheit to Celsius"<br>    celcius =  (Farenheit - 32) *5 /9<br>    return celcius<br><br>F2C(100)<br><br><br><br><br>def biggest(a,b,c):<br>    'Compare biggest '<br>    if a &gt; b: <br>        if a &gt; c:  <br>            return a <br>        else: <br>            return c <br>        <br>    elif b &gt; a: <br>        if b &gt; c:  <br>            return b <br>        else: <br>            return c <br><br><br><br>biggest(428,20,98)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 07:57:41 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837456645</guid>
      </item>
      <item>
         <title>Nurul Exercise 3</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837457236</link>
         <description><![CDATA[<div>def F2C(F):<br>    "This Farenheit to Celsius "<br>    return ((F-32))* 5/9<br><br>a=5<br>b=10<br>c=30<br><br>def bigger(a, b, c):<br>    if a &gt; b and a &gt; c:<br>        return a<br>    elif b &gt; c :<br>        return b<br>    else:<br>        return c<br><br>bigger(10, 30, 20)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 07:58:48 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837457236</guid>
      </item>
      <item>
         <title>Suying Ex3</title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837458764</link>
         <description><![CDATA[<div>def F2C(fah):<br>    "function: print fahrenheit value to celcius"<br>    return ((fah-32)*5)/9<br><br>F2C(20)<br><br>def biggest(a,b,c):<br>    "function: take inputs and return largest one"<br>    return (max(a,b,c))<br><br>biggest(1,2,3)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 08:02:01 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837458764</guid>
      </item>
      <item>
         <title>Yong </title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837468830</link>
         <description><![CDATA[<div>def bigger(a, b, c):<br>    if a &gt; b and a &gt; c:<br>        return a<br>    elif b &gt; c: <br>        return b<br>    else:<br>        return c</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-10-17 08:24:34 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/837468830</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/838115665</link>
         <description><![CDATA[def checksum(num1,num2):
    "return sum of two integer. however, if the sum between 15 and 20 it will return 20"
    total  = num1 + num2
    if total&gt;=15 and total&lt;=20:
        return 20
    else:
        return total
    
print(checksum(9,9))
print(checksum(20,-2))
print(checksum(-2,50))
]]></description>
         <enclosure url="" />
         <pubDate>2020-10-18 01:09:42 UTC</pubDate>
         <guid>https://padlet.com/darentanwork/ino5ouc2nqo00aue/wish/838115665</guid>
      </item>
   </channel>
</rss>
