<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Python by Tasanawan Soonklang</title>
      <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw</link>
      <description>Made with eyes on the prize</description>
      <language>en-us</language>
      <pubDate>2021-08-25 04:23:59 UTC</pubDate>
      <lastBuildDate>2025-12-13 13:28:03 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>home</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795947135</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368965/e0a7cb65d640aab485576dea467105f1/243376626_1028957097880024_961260536363841510_n.jpg" />
         <pubDate>2021-10-06 09:53:47 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795947135</guid>
      </item>
      <item>
         <title>Purple Star</title>
         <author>taweechokpaisan_p</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795960576</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389376937/73c519dd3f2bd5a19a4b04bda2bf954c/purple_star.jpg" />
         <pubDate>2021-10-06 10:00:27 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795960576</guid>
      </item>
      <item>
         <title>stairs</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795976138</link>
         <description><![CDATA[<div>from turtle import *</div><div>import random</div><div>my_color1 = ['red','green','yellow']</div><div>my_color2 = ['red','blue','purple']</div><div>print("Hello,Turtle")</div><div>shape("turtle")</div><div>pensize(2)</div><div>speed(2)</div><div>for i in range(2):</div><div>&nbsp; &nbsp; color(random.choice(my_color1))</div><div>&nbsp; &nbsp; forward(200)</div><div>&nbsp; &nbsp; left(90)</div><div>&nbsp; &nbsp; stamp()</div><div>for i in range(4):</div><div>&nbsp; &nbsp; color(random.choice(my_color2))</div><div>&nbsp; &nbsp; forward(50)</div><div>&nbsp; &nbsp; left(90)</div><div>&nbsp; &nbsp; forward(50)</div><div>&nbsp; &nbsp; right(90)</div><div>&nbsp; &nbsp; stamp()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389373276/4d555c7cb032cc43b3e577a959afed2e/790____.jpg" />
         <pubDate>2021-10-06 10:09:11 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795976138</guid>
      </item>
      <item>
         <title>colorful grass</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795986426</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367741/4fab33199d0c69515cdbb11c8eb9b246/____________.jpg" />
         <pubDate>2021-10-06 10:14:47 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795986426</guid>
      </item>
      <item>
         <title>crown</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795997950</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389369457/88582c14026dea0961c06448407dbf9a/crown.png" />
         <pubDate>2021-10-06 10:21:00 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1795997950</guid>
      </item>
      <item>
         <title>Hikun</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796002331</link>
         <description><![CDATA[<div>from turtle import *<br><br>print("Hello, Turtle")<br>shape("turtle")<br>pensize(4)<br>speed(10)<br><br>color("blue","blue")<br>begin_fill()<br>for i in range(2):<br>&nbsp; &nbsp; forward(200)<br>&nbsp; &nbsp; left(90)<br>&nbsp; &nbsp; forward(130)<br>&nbsp; &nbsp; left(90) &nbsp;<br>end_fill()<br>penup()<br>goto(200,30)<br>pendown()<br>color("red","red")<br>begin_fill()<br>forward(15)<br>left(90)<br>forward(70)<br>left(90)<br>forward(15)<br>end_fill()<br>penup()<br>goto(0,100)<br>pendown()<br>color("red","red")<br>begin_fill()<br>forward(15)<br>left(90)<br>forward(70)<br>left(90)<br>forward(15)<br>end_fill()<br>penup()<br>goto(70,130)<br>pendown()<br>left(90)<br>color("yellow","yellow")<br>begin_fill()<br>for i in range(2):<br>&nbsp; &nbsp; forward(15)<br>&nbsp; &nbsp; right(90)<br>&nbsp; &nbsp; forward(60)<br>&nbsp; &nbsp; right(90)<br>end_fill()<br>penup()<br>goto(85,150)<br>pendown()<br>color("red","red")<br>begin_fill()<br>for i in range(2):<br>&nbsp; &nbsp; forward(10)<br>&nbsp; &nbsp; right(90)<br>&nbsp; &nbsp; forward(30)<br>&nbsp; &nbsp; right(90)<br>end_fill()<br>penup()<br>goto(30,25)<br>pendown()<br>color("yellow","yellow")<br>begin_fill()<br>for i in range(2):<br>&nbsp; &nbsp; forward(80)<br>&nbsp; &nbsp; right(90)<br>&nbsp; &nbsp; forward(140)<br>&nbsp; &nbsp; right(90)&nbsp;<br>end_fill()<br>penup()<br>goto(80,65)<br>pendown()<br>color("white","white")<br>begin_fill()<br>circle(16,360)<br>end_fill()<br>penup()<br>goto(75,65)<br>pendown()<br>color("black","black")<br>begin_fill()<br>circle(5,360)<br>end_fill()<br>penup()<br>goto(150,65)<br>pendown()<br>color("white","white")<br>begin_fill()<br>circle(20,360)<br>end_fill()<br>penup()<br>goto(125,65)<br>pendown()<br>color("black","black")<br>begin_fill()<br>circle(5,360)<br>end_fill()<br>penup()<br>goto(100,40)<br>pendown()<br>color("black","black")<br>begin_fill()<br>circle(6,360)<br>end_fill()<br>penup()<br>goto(-100,-10)<br>pendown()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368403/b38dbedf3397e2a2d7791290ec794d10/AEDC1389_B1BC_442B_81DB_9F428E79DB1B.jpeg" />
         <pubDate>2021-10-06 10:23:26 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796002331</guid>
      </item>
      <item>
         <title>630710402</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796010772</link>
         <description><![CDATA[<div>from turtle import *<br>print(" | |&nbsp; || || |&nbsp; | O| ||")<br>print("WANNAONE")<br>color('black')<br>pensize(2)<br>speed(20)<br>forward(600)<br>left(90)<br>forward(150)<br>left(90)<br>dot(11)<br>forward(200)<br>right(90)<br>dot(11)<br>forward(800)<br>left(90)<br>dot(11)<br>forward(300)<br>left(45)<br>dot(11)<br>forward(300)<br>left(45)<br>dot(11)<br>forward(200)<br>left(129)<br>dot(11)<br>forward(657.8)<br>left(230.8)<br>forward(400)<br>left(222)<br>forward(310)<br>left(138.6)<br>dot(11)<br>forward(630)<br>left(152.5)<br>dot(11)<br>forward(450)<br>left(207.2)<br>forward(405)<br>left(90)<br>forward(200)<br>left(227)<br>forward(207)<br>left(282)<br>forward(310)<br>left(32)<br>forward(200)<br>right(222)<br>forward(230)<br>left(75)<br>forward(160)<br>left(115)<br>forward(130)<br>right(328)<br>forward(195)<br>left(89.5)<br>dot(11)<br>forward(160)<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389429852/84ee910d0a1a78faca9c7b7c9501a21b/8968A6E7_7527_481D_842C_EA4A1D6CA71D.jpeg" />
         <pubDate>2021-10-06 10:27:59 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796010772</guid>
      </item>
      <item>
         <title>message_box</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796022025</link>
         <description><![CDATA[<div>from turtle import *</div><div>import random</div><div>s = ["tan","oat","latte","red","pink","purple","blue","tawny","gray"]</div><div><br><br></div><div>def message_box(x):</div><div>&nbsp; color(random.choice(s))</div><div>&nbsp; shape("circle")</div><div>&nbsp; pensize(3)</div><div>&nbsp; speed(10)</div><div>&nbsp; forward(x)</div><div>&nbsp; right(90)</div><div>&nbsp; forward(x)</div><div>&nbsp; right(90)</div><div>&nbsp; forward(x-(x/4))</div><div>&nbsp; left(15)</div><div>&nbsp; forward(x/2)</div><div>&nbsp; right(165)</div><div>&nbsp; forward(x/4)</div><div>&nbsp; left(60)</div><div>&nbsp; forward(x)</div><div>&nbsp;&nbsp;</div><div><br></div><div>h=int(input())</div><div><br><br></div><div>rr=message_box(h)</div><div><br></div><div>print(rr)</div><div><br><br></div><div>&nbsp; &nbsp;&nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368502/ce49ebfb9533cff26dc9225314293288/243263820_394157095489600_2418530975656543475_n.jpg" />
         <pubDate>2021-10-06 10:34:04 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1796022025</guid>
      </item>
      <item>
         <title>Among Us</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1798542194</link>
         <description><![CDATA[<div>from turtle import *<br>shape('turtle')<br>width(10)<br>bgcolor('red')<br><br>#Body<br>def body(line_bd, fill_bd):<br>&nbsp; &nbsp; color(line_bd, fill_bd)<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; rt(90)<br>&nbsp; &nbsp; fd(80)<br>&nbsp; &nbsp; circle(-50,180)<br>&nbsp; &nbsp; fd(200)<br>&nbsp; &nbsp; circle(-140,180)<br>&nbsp; &nbsp; fd(200)<br>&nbsp; &nbsp; circle(-50,180)<br>&nbsp; &nbsp; fd(80)<br>&nbsp; &nbsp; lt(90)<br>&nbsp; &nbsp; fd(80)<br>&nbsp; &nbsp; end_fill()<br># body()<br><br>#glass<br>def glass (line_g, fill_g):<br>&nbsp; &nbsp; color(line_g, fill_g)<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; penup()<br>&nbsp; &nbsp; goto(80,100)<br>&nbsp; &nbsp; pendown()<br>&nbsp; &nbsp; circle(-50,180)<br>&nbsp; &nbsp; fd(70)<br>&nbsp; &nbsp; circle(-50,180)<br>&nbsp; &nbsp; fd(70)<br>&nbsp; &nbsp; end_fill()<br># glass()<br><br>#bag<br>def bag (line_b, fill_b):<br>&nbsp; &nbsp; color(line_b, fill_b)<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; penup()<br>&nbsp; &nbsp; goto(-100,120)<br>&nbsp; &nbsp; pendown()<br>&nbsp; &nbsp; circle(60,90)<br>&nbsp; &nbsp; fd(40)<br>&nbsp; &nbsp; circle(60,90)<br>&nbsp; &nbsp; lt(90)<br>&nbsp; &nbsp; fd(160)<br>&nbsp; &nbsp; end_fill()<br># bag()<br><br>#hat<br>def party_hatt(line_h, fill_h):<br>&nbsp; &nbsp; color(line_h, fill_h)<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; penup()<br>&nbsp; &nbsp; goto(-70,220)<br>&nbsp; &nbsp; pendown()<br>&nbsp; &nbsp; for i in range(3):<br>&nbsp; &nbsp; &nbsp; &nbsp; fd(100)<br>&nbsp; &nbsp; &nbsp; &nbsp; rt(120)<br>&nbsp; &nbsp; end_fill()<br>#&nbsp; &nbsp; &nbsp;done()<br># party_hatt()<br><br>#Test<br>body('black', 'red')<br>glass ('black', 'lightskyblue')<br>bag ('black', 'red')<br>party_hatt('black', 'green')</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367804/def28060dc12c75fd3bf8a617eda56dd/among_us_5659730_640.png" />
         <pubDate>2021-10-07 03:24:05 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1798542194</guid>
      </item>
      <item>
         <title>Flower 🌼🌸 630710407</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1807464158</link>
         <description><![CDATA[<div>from turtle import *<br>import random<br>my_color = ["pink","yellow","orange"]<br>Screen().bgcolor("blue")<br>pensize(2)<br>speed(3)<br>color("red")<br>begin_fill()<br>for i in range(10):<br>&nbsp; for i in range(2):<br>&nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; right(60)<br>&nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; right(120)<br>&nbsp; right(36)<br>color(random.choice(my_color))<br>end_fill()<br>done()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368127/ee77984c9debf83b653785c3fb462ae0/16A14F6A_03FA_4067_A63A_46FFCAFB8D29.jpeg" />
         <pubDate>2021-10-11 12:31:10 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1807464158</guid>
      </item>
      <item>
         <title>8เหลี่ยม4 630710792</title>
         <author>mora_r</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1808195936</link>
         <description><![CDATA[<div>from turtle import*<br>import random<br>my_color = ["pink","green","yellow"]<br>shape("turtle")<br>color("black")<br>pensize(2)<br>speed(2)<br>begin_fill()<br>for i in range(8):<br>&nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; right(45)<br>left(90)<br>forward(100)<br>for i in range(8):<br>&nbsp; &nbsp; right(90)<br>&nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; right(90)<br>&nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; left(135)<br>&nbsp; &nbsp; forward(100)<br>color(random.choice(my_color))<br>end_fill()<br>done()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389386243/35bdd4c97b1e50ff35fba586197ee6fa/8747E411_5985_40AD_B896_7BBFE5D914F1.png" />
         <pubDate>2021-10-11 16:29:20 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1808195936</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1810127887</link>
         <description><![CDATA[<div>from turtle import*</div><div>import random</div><div>color</div><div>my_color = ["red", "pink" , "orange","purple" ]</div><div>print("Hello,turtle")</div><div>shape("turtle")</div><div>pensize(2)</div><div>speed(5)</div><div><br></div><div>for i in range(3):&nbsp;</div><div>&nbsp; for i in range(4):</div><div>&nbsp; &nbsp; for i in range(6):</div><div>&nbsp; &nbsp; &nbsp; color(random.choice(my_color))</div><div>&nbsp; &nbsp; &nbsp; forward(60)</div><div>&nbsp; &nbsp; &nbsp; left(40)</div><div>&nbsp; &nbsp; left(30)</div><div>&nbsp; &nbsp; forward(1)</div><div>&nbsp; &nbsp; left(1)&nbsp; &nbsp;&nbsp;</div><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1399597606/b67aa89165fbb58bcd11c597f4fe45a7/rose.jpg" />
         <pubDate>2021-10-12 08:57:32 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1810127887</guid>
      </item>
      <item>
         <title>merge triangle (ุ630710399)</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1810196471</link>
         <description><![CDATA[<div>from turtle import *<br>import random<br>pensize(4)<br>speed(7)<br>shape("turtle")<br>print("Hello teacher")<br><br>my_color=["red","pink","orange"]<br>for i in range(12):<br>&nbsp; &nbsp; color("black",random.choice(my_color))<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; for i in range(3):<br>&nbsp; &nbsp; &nbsp; &nbsp; forward(150)<br>&nbsp; &nbsp; &nbsp; &nbsp; left(120)<br>&nbsp; &nbsp; right(30)<br>&nbsp; &nbsp; end_fill()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368543/565cf765588165c2fdbfa9f259dfae18/245531525_957540128176888_2359963784636740900_n.png" />
         <pubDate>2021-10-12 09:34:09 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1810196471</guid>
      </item>
      <item>
         <title>hexagon</title>
         <author>boriraksathorn_p</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1811384828</link>
         <description><![CDATA[<div>from turtle import*</div><div>from random import*</div><div>my_colour = ['pink','blue','yellow','purple','red','orange']</div><div>shape("turtle")</div><div>for i in range(6):</div><div>&nbsp; color(choice(my_colour))</div><div>&nbsp; left(60)</div><div>&nbsp; forward(100)</div><div>color(choice(my_colour))</div><div>right(60)</div><div>forward(100)</div><div>for i in range(4):</div><div>&nbsp; color(choice(my_colour))</div><div>&nbsp; left(60)</div><div>&nbsp; forward(100)<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368783/1f7d693870c64761b9766d43b2f97219/245194436_1000680854108983_6513989532424631145_n.jpg" />
         <pubDate>2021-10-12 16:38:49 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1811384828</guid>
      </item>
      <item>
         <title>07610240</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1814355171</link>
         <description><![CDATA[<div>from turtle import*<br>import random<br>my = ["pink"]<br><br>color(my)<br>forward(25)<br>left(90)<br>forward(100)<br>right(90)<br>forward(50)<br>right(90)<br>forward(100)<br>left(90)<br>forward(25)<br>left(90)<br>forward(125)<br>left(90)<br>forward(75)<br>right(90)<br>forward(15)<br>left(90)<br>forward(25)<br>left(90)<br>forward(140)<br><br>done()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389627848/aec9310a8fffdf5106bea94031a5dbf0/E0E41959_D359_4244_B7EF_E9273226D0C0.png" />
         <pubDate>2021-10-13 15:33:09 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1814355171</guid>
      </item>
      <item>
         <title>09610911</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829828989</link>
         <description><![CDATA[<pre>https://disease.sh/v3/covid-19/states</pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367804/d1eb0a4c195318b97266e6d6d92949b7/messageImage_1634780982653.jpg" />
         <pubDate>2021-10-20 09:23:28 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829828989</guid>
      </item>
      <item>
         <title>640710039</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829830642</link>
         <description><![CDATA[<pre>https://disease.sh/v3/covid-19/states</pre><div>เวลาดึงข้อมูลจาก api อยากให้ดึงทุกรัฐ หรือให้เลือกรัฐที่จะดึงมาได้เป็น input จากผู้ใช้ก็ได้ค่ะ</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1413903514/dce1a6e6285321f0a676cd0fcd211038/Graph_Data.png" />
         <pubDate>2021-10-20 09:24:24 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829830642</guid>
      </item>
      <item>
         <title>640710039</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829846252</link>
         <description><![CDATA[<div>from turtle import *</div><div><br></div><div>def star(distance):</div><div>&nbsp; speed(5)</div><div>&nbsp; pencolor('white')</div><div>&nbsp; my_color = ['orange','yellow','green','blue','purple','red']</div><div>&nbsp; for color in my_color:</div><div>&nbsp; &nbsp; begin_fill()</div><div>&nbsp; &nbsp; fillcolor(color)</div><div>&nbsp; &nbsp; right(60)</div><div>&nbsp; &nbsp; forward(distance)</div><div>&nbsp; &nbsp; for time in range(3):</div><div>&nbsp; &nbsp; &nbsp; left(120)</div><div>&nbsp; &nbsp; &nbsp; forward(distance)</div><div>&nbsp; &nbsp; end_fill()</div><div>&nbsp; begin_fill()</div><div>&nbsp; fillcolor('pink')</div><div>&nbsp; for time in range(6):</div><div>&nbsp; &nbsp; right(60)</div><div>&nbsp; &nbsp; forward(distance)</div><div>&nbsp; end_fill()</div><div><br></div><div>star(100)</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1413903514/b385701c20749a23295cc3704399122e/star__1_.png" />
         <pubDate>2021-10-20 09:33:42 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829846252</guid>
      </item>
      <item>
         <title>640710418</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829864073</link>
         <description><![CDATA[<div><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a><br><br>เวลาดึงข้อมูลจาก api อยากให้ดึงทุกรัฐ หรือให้เลือกรัฐที่จะดึงมาได้เป็น&nbsp;input จากผู้ใช้ก็ได้ค่ะ</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367938/8cd7e5a140e346aa1cd8f3840a366b6e/9B168B84_AC66_43AC_A9C3_8651D5A09BE0.jpeg" />
         <pubDate>2021-10-20 09:43:30 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829864073</guid>
      </item>
      <item>
         <title>640710415</title>
         <author>charoenyot_t</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829866381</link>
         <description><![CDATA[<div>from turtle import*<br>import random<br>my_color = ['red', 'deeppink', 'aqua', 'magenta', 'gold', 'lime']<br><br>print("Hello Turtle")<br>shape("turtle")<br>pensize(5)<br>speed(150)<br>for i in range(10):<br>&nbsp; &nbsp; begin_fill()<br>&nbsp; &nbsp; for i in range(5):<br>&nbsp; &nbsp; &nbsp; &nbsp; color(random.choice(my_color))<br>&nbsp; &nbsp; &nbsp; &nbsp; forward(100)<br>&nbsp; &nbsp; &nbsp; &nbsp; left(72)<br>&nbsp; &nbsp; left(36)<br>&nbsp; &nbsp; for i in range(5):<br>&nbsp; &nbsp; &nbsp; &nbsp; color(random.choice(my_color))<br>&nbsp; &nbsp; &nbsp; &nbsp; forward(160)<br>&nbsp; &nbsp; &nbsp; &nbsp; left(144)<br>&nbsp; &nbsp; color('black')<br>&nbsp; &nbsp; end_fill()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389375581/53eeb6c85300a8224e73bedf4b4df10d/640710415.png" />
         <pubDate>2021-10-20 09:45:04 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829866381</guid>
      </item>
      <item>
         <title>640710415(2)</title>
         <author>charoenyot_t</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829900543</link>
         <description><![CDATA[<pre>https://disease.sh/v3/covid-19/vaccine/coverage/states?lastdays=30&amp;fullData=false</pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389375581/3bb011e83a9e97cb832128bbbdce3e32/246482648_146145554344285_8444850503977755352_n__1_.jpg" />
         <pubDate>2021-10-20 10:06:59 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829900543</guid>
      </item>
      <item>
         <title>630710790</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829905432</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389373276/dbdd15d05eeceeb1ca8166cb7b3f843d/image.png" />
         <pubDate>2021-10-20 10:10:09 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829905432</guid>
      </item>
      <item>
         <title>07610240</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829912844</link>
         <description><![CDATA[<div><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389627848/0356ab87236c2763167e2d42cbd3a95f/12DD87D0_0F99_4C17_BFEC_516FF6AB8B92.png" />
         <pubDate>2021-10-20 10:14:37 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829912844</guid>
      </item>
      <item>
         <title>07610254</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829969575</link>
         <description><![CDATA[<div>https://disease.sh/v3/covid-19/states</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368407/1abb6a1110d0cae91c0b410a36ba6daa/______1.png" />
         <pubDate>2021-10-20 10:48:29 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829969575</guid>
      </item>
      <item>
         <title>630710402</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829986142</link>
         <description><![CDATA[<div><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389429852/ce40bb4b90f7dd9889375818b2401af9/3FD920FC_1353_4820_BD87_1B4B201651F5.jpeg" />
         <pubDate>2021-10-20 10:59:07 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1829986142</guid>
      </item>
      <item>
         <title>630710399</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830041899</link>
         <description><![CDATA[<pre>https://disease.sh/v3/covid-19/countries</pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368543/547cafc96045b73988c258660a1e7ea3/246710710_585467666130268_3624424802871524492_n.png" />
         <pubDate>2021-10-20 11:32:43 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830041899</guid>
      </item>
      <item>
         <title>640710035</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830514324</link>
         <description><![CDATA[<div>https://disease.sh/v3/covid-19/nyt/usa<br>กราฟสัมพันธ์ระหว่า <strong>cases</strong>จำนวนผู้ป่วยโควิดของ USA&nbsp; (คน) และ <strong>date</strong>เวลา (เดือน/วัน/ปี)</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368502/4d74fcbe90ad6a2e0c215a00363cf9e9/246804495_266201245421217_7649626499375508969_n.jpg" />
         <pubDate>2021-10-20 14:14:44 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830514324</guid>
      </item>
      <item>
         <title>640710886</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830583969</link>
         <description><![CDATA[<div>#วงกลมดอกไม้<br>import turtle<br>t = turtle.Turtle()<br>t.shape('turtle')<br>t.color('crimson','tomato')<br>t.width(10)<br>t.begin_fill()<br><br><br>for i in range(6):<br>&nbsp; &nbsp; t.circle(100)<br>&nbsp; &nbsp; t.circle(-100)<br>&nbsp; &nbsp; t.rt(75)<br>&nbsp; &nbsp;&nbsp;<br>t.end_fill()</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1414417156/cf548ba17a421a360d1d465c26ff3b68/A9C2E3D0_3242_4B61_9F00_C34C8DBFDA83.jpeg" />
         <pubDate>2021-10-20 14:33:12 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830583969</guid>
      </item>
      <item>
         <title>640710886</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830856291</link>
         <description><![CDATA[<div>https://disease.sh/v3/covid-19/states<br>กราฟแสดงข้อมูลจำนวนผู้ติดเชื้อ ผู้ที่หายป่วย&nbsp;<br>ผู้เสียชีวิต ของทั้ง4เดือนนี้&nbsp;<br>!จำนวนคน(หน่วยเป็นล้าน)!</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1414466793/b87f4bdc7115405e5b09bbfd1fb29a12/_________.png" />
         <pubDate>2021-10-20 15:48:28 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1830856291</guid>
      </item>
      <item>
         <title>630710792</title>
         <author>mora_r</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842173587</link>
         <description><![CDATA[<div><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389386243/19c14546558fa3ef962643f926acd674/086ED8D9_6F8C_4785_9154_32D6946B7BA4.png" />
         <pubDate>2021-10-25 15:49:12 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842173587</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842274626</link>
         <description><![CDATA[<div>กราฟแสดงวันที่และจำนวนผู้เสียชีวิต&nbsp;<br><a href="https://disease.sh/v3/covid-19/nyt/usa">https://disease.sh/v3/covid-19/nyt/usa</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367778/883c40e004bfcf2fc10a7299299b5e97/FB6D002D_8888_4E34_956F_0A7217F962E9.jpeg" />
         <pubDate>2021-10-25 16:19:39 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842274626</guid>
      </item>
      <item>
         <title>640710417</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842492989</link>
         <description><![CDATA[<div><a href="https://disease.sh/v3/covid-19/nyt/states?lastdays=30">https://disease.sh/v3/covid-19/nyt/states?lastdays=30</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1422648577/48419fa0dc059ac5248140e039f1f36d/0975E92A_6A31_4C6B_BEEC_87755FBC30E5.jpeg" />
         <pubDate>2021-10-25 17:29:17 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1842492989</guid>
      </item>
      <item>
         <title>640710420</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1845153377</link>
         <description><![CDATA[<div>กราฟแสดงจำนวนคนติดเชื้อ เเละผู้เสียชีวิตของทั้ง 4 รัฐ<br><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1424761837/3d921f3af987dff1696b3bb617f48674/7F45ECFE_9D68_42E7_A3FE_E269C38C8A99.jpeg" />
         <pubDate>2021-10-26 14:22:02 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1845153377</guid>
      </item>
      <item>
         <title>630710405</title>
         <author>boriraksathorn_p</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1845291737</link>
         <description><![CDATA[<div>กราฟแสดงจำนวนผู้ติดเชื้อและผู้เสียชีวิตของวันที่ 26/10/2021<br>ของแต่ละทวีป<br><br></div><pre>https://disease.sh/v3/covid-19/continents</pre><div><br><br></div><pre><br></pre>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368783/c04bd87b70a8fda87f7fc1d1693cfb23/249594128_564116478209184_2870316254172483963_n.jpg" />
         <pubDate>2021-10-26 14:59:03 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1845291737</guid>
      </item>
      <item>
         <title>640710888</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1855301797</link>
         <description><![CDATA[<div>กราฟแสดความสัมพันธ์ระหว่าง updated และ todaycase<br>https://disease.sh/v3/covid-19/continents</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1431378532/ad166ad48ea11674c0ddf16cd7f09276/2F53A7BB_3C7B_4913_8978_EAE1EB86FCB8.jpg" />
         <pubDate>2021-10-30 09:17:56 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1855301797</guid>
      </item>
      <item>
         <title>640710037</title>
         <author>moomturee_p</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1855307010</link>
         <description><![CDATA[<div>กราฟแสดงวันที่และจำนวนผู้เสียชีวิต&nbsp;<br><a href="https://disease.sh/v3/covid-19/nyt/usa">https://disease.sh/v3/covid-19/nyt/usa</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389367778/883c40e004bfcf2fc10a7299299b5e97/FB6D002D_8888_4E34_956F_0A7217F962E9.jpeg" />
         <pubDate>2021-10-30 09:23:52 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1855307010</guid>
      </item>
      <item>
         <title>630710407</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1859699973</link>
         <description><![CDATA[<div>กราฟแสดงความสัมพันธ์ระหว่าง case,todaycase,deaths และ todayDeaths ของรัฐนิวยอร์ก รัฐโอไฮโอและรัฐไอโอวา<br><a href="https://disease.sh/v3/covid-19/states">https://disease.sh/v3/covid-19/states</a></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1389368127/44b778a863157c29abff7482bbee2563/C52F10A6_5C3A_444C_9813_6758E0B3AD77.jpeg" />
         <pubDate>2021-11-01 19:30:56 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1859699973</guid>
      </item>
      <item>
         <title>630710413</title>
         <author></author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1895080340</link>
         <description><![CDATA[<div>กราฟแสดงความสัมพันธ์ระหว่าง cases,deaths,recovered&nbsp;ของทวีป Asia, Europe, North America<br>https://disease.sh/v3/covid-19/continents</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1458964112/0c090e63b1be525aba44f27aa3266ee7/530A7369_00C7_40A2_B7BA_00648017FA7B.jpeg" />
         <pubDate>2021-11-16 19:57:16 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1895080340</guid>
      </item>
      <item>
         <title>https://www.teachwithict.com/turtle_tutorial.html</title>
         <author>soonklang_t</author>
         <link>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1913937552</link>
         <description><![CDATA[<div>ฝึกวาดรูปโดยใช้ module turtle<br>เอกสารอ้างอิง<br>https://docs.python.org/3/library/turtle.html</div>]]></description>
         <enclosure url="https://www.teachwithict.com/turtle_tutorial.html" />
         <pubDate>2021-11-26 08:18:07 UTC</pubDate>
         <guid>https://padlet.com/soonklang_t/xb2i4610w0evgunw/wish/1913937552</guid>
      </item>
   </channel>
</rss>
