<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>20220926 파이썬 2일차 _과제 by 러브커피</title>
      <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2022-09-26 09:59:57 UTC</pubDate>
      <lastBuildDate>2025-10-04 07:14:12 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f600.png</url>
      </image>
      <item>
         <title>1.  생년월일 확인하기</title>
         <author>coffee79429</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313359212</link>
         <description><![CDATA[<div># name 변수에 이름을 저장해 보세요.&nbsp;</div><div><br></div><div># id_no 변수에 주민번호 6자리를 저장합니다.</div><div><br></div><div># 아래 빈칸에 들어가는 키워드를 작성해서 코드를 완성해 보세요</div><div><br></div><div># year 변수에 주민번호 중 태어난년도를 슬라이싱해서 저장합니다.</div><div><br></div><div># month 변수에 주민번호 중 월을 슬라이싱해서 저장합니다.</div><div><br></div><div># day 변수에 태어난 날을 슬라이싱해서 저장합니다.</div><div><br></div><div># 변수와 format함수를 이용하여 출력해보세요.</div><div># 파이썬님의 생년월일은 81년 01월 25일 입니다.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 10:07:32 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313359212</guid>
      </item>
      <item>
         <title>정주황 1,2번 과제 올립니다.</title>
         <author>tomboyjjh</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313817689</link>
         <description><![CDATA[<div>1번과제<br>name = input('이름 :')</div><div>id_no = input('주민번호 6자리 :')</div><div>year = id_no[:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div>print('{}님의 생년월일은 {}년 {}월 {}일 입니다.'.format(name,year,month,day))</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 14:54:22 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313817689</guid>
      </item>
      <item>
         <title>2. 근무 기간에 따라 초과수당 계산</title>
         <author>coffee79429</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313820930</link>
         <description><![CDATA[<div>''문제 _ 'if문을 이용하여 근무기간에 따른 초과근무 수당을 출력하려고 합니다.근무기간이 3년 이상이면, 초과근무 수당에 10%, 근무기간이 4년이상 7년 이하이면 20%, 7년을 초과하면 30% 추가 지급됩니다.'''&nbsp;<br><br># 아래 빈칸에 들어가는 키워드를 작성해서 코드를 완성해 보세요.</div><div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div><br></div><div># 초과 근무 시간을 입력받아 time 변수에 저장해 보세요.</div><div><br></div><div># if~elif~else문을 이용하여 근무기간이 3년 이하는 10%, 7년 이하는 20%, 8년 이상은 30%을추가하도록 코드를 완성해 보세요.</div><div><br></div><div># ***님의 초과근무 수당은 *** 입니다. 라고 출력해 보세요.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 14:55:54 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313820930</guid>
      </item>
      <item>
         <title>이하나</title>
         <author>hanaplusu</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313821155</link>
         <description><![CDATA[<div>과제 1<br><br>name = input("이름을 입력하세요: ")<br>id_no = input("주민번호 앞 6자리를 입력하세요: ")<br>year = id_no [0:2]<br>month = id_no [2:4]<br>day = id_no [4:]<br><br>print("{}님의 생년월일은 {}년 {}월 {}일 입니다.".format(name,year, month, day) )</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 14:56:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313821155</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313822251</link>
         <description><![CDATA[<div>name = input("이름을 입력하세요 : ")</div><div>id_no = input("주민번호 6자리를 입력하세요 : ")<br><br></div><div>year = id_no[:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:]</div><div><br></div><div>print("{}님의 생년월일은 {}년 {}월 {}일 입니다.".format(name, year, month, day))</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/857651a9af81d709ae0706986a1e53dc/1.png" />
         <pubDate>2022-09-26 14:56:37 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313822251</guid>
      </item>
      <item>
         <title>정주황 2번과제</title>
         <author>tomboyjjh</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313823115</link>
         <description><![CDATA[<div>2번과제<br>pay = 0</div><div>extra_pay = 11000</div><div>endtime = 18</div><div><br></div><div>name = input('이름을 입력해주세요:')</div><div>ep = int(input('근무기간을 입력해주세요:'))</div><div>time = int(input('초과근무 시간을 입력해주세요 :'))</div><div><br></div><div>if ep &lt;= 3:</div><div>&nbsp; overtimepay = (extra_pay*time)*1.1</div><div>elif ep &lt;= 7:</div><div>&nbsp; overtime_pay = (extra_pay*time)*1.2</div><div>else :</div><div>&nbsp; &nbsp;overtime_pay = (extra_pay*time)*1.3</div><div><br></div><div>print('{}님의 초과근무수당은 {}입니다.'.format(name,overtime_pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 14:57:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313823115</guid>
      </item>
      <item>
         <title>이하나</title>
         <author>hanaplusu</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313823416</link>
         <description><![CDATA[<div>endtime = 18<br>extra_pay = 11000<br>name = input("이름을 입력해주세요: ")<br>ep = int(input("근무기간을 입력해주세요: "))<br>overtime = int(input("업무 종료시간을 입력하세요: "))<br><br>if ep&lt;=3 :<br>&nbsp; &nbsp; overtime_pay = (overtime - endtime)*extra_pay*1.1<br>elif ep&lt;=7 :&nbsp;<br>&nbsp; &nbsp; overtime_pay = (overtime - endtime)*extra_pay*1.2<br>else :&nbsp;<br>&nbsp; &nbsp; overtime_pay = (overtime - endtime)*extra_pay*1.3<br><br>print("{}님의 초과 근무수당은 {}입니다.".format(name,overtime_pay) )</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 14:57:12 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313823416</guid>
      </item>
      <item>
         <title>조슬기</title>
         <author>hanzel83</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313840327</link>
         <description><![CDATA[<div>name=input('이름: ')</div><div>id_no=input('주민번호 6자리: ')</div><div>year=(id_no[0:2])</div><div>month=(id_no[3:4])</div><div>day=(id_no[4:6])</div><div>print("{}님의 생년월일은 {}년 {} 월 {}일 입니다.". format(name, year, month, day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 15:06:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313840327</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313850242</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무 기간을 입력해주세요: "))</div><div><br></div><div>time = int(input("초과 근무 시간을 입력하세요 : "))</div><div><br></div><div>if ep&lt;=3 :</div><div>&nbsp; &nbsp; pay = int(time * (extra_pay * 1.1))</div><div>elif ep&lt;=7 :</div><div>&nbsp; &nbsp; pay = int(time * (extra_pay * 1.2))</div><div>else :</div><div>&nbsp; &nbsp; pay = int(time * (extra_pay * 1.3))</div><div><br></div><div>print("{}님의 초과 근무 수당은 {:,}원 입니다.".format(name,pay))<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/2681d2ac30e56a234b1ab64c0e24d5ce/2.png" />
         <pubDate>2022-09-26 15:11:08 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313850242</guid>
      </item>
      <item>
         <title>유지은</title>
         <author>klimt721</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313909977</link>
         <description><![CDATA[<div>name = input("이름을 입력하세요 : ")</div><div>id_no =input("주민번호 6자리를 입력하세요: ")</div><div>year = id_no [:2]</div><div>month = id_no [2:4]</div><div>day = id_no[4:]</div><div>print('{}님의 생년월일은 {}년 {}월{}일 입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 15:42:28 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313909977</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313920114</link>
         <description><![CDATA[<div>#생년월일 확인하기</div><div>name = input('이름:')</div><div>id_no = input('주민번호6자리:')</div><div>year= id_no[:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:]</div><div>print("{}님의 생년월일은 {}년 {}월 {}일 입니다.".format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 15:47:37 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313920114</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313921411</link>
         <description><![CDATA[<div>#근무수당에 따라 초과수당계산</div><div>pay = 0</div><div>extra_pay=11000</div><div>name =input('이름:')</div><div>ep = int(input('근무기간 입력:'))</div><div>time = int(input('초과근무시간:'))</div><div><br></div><div>if ep &lt;= 3:</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.1</div><div>elif ep &lt;= 7 :</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.2</div><div>else:</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.3</div><div>print('{}님의 초과근무수당은 {}원 입니다'.format(name,time_pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 15:48:18 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313921411</guid>
      </item>
      <item>
         <title>유지은</title>
         <author>klimt721</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313945901</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div>time = int(input("초과 근무 시간을 입력해주세요:"))</div><div><br></div><div>if ep &lt;= 3 :&nbsp;</div><div>&nbsp; &nbsp; overtime_pay =&nbsp; int(time*extra_pay*1.1)</div><div>elif ep &lt;=7 :&nbsp;</div><div>&nbsp; &nbsp; overtime_pay =&nbsp; int(time*extra_pay*1.2)</div><div>else :&nbsp;</div><div>&nbsp; &nbsp; overtime_pay =&nbsp; int(time*extra_pay*1.3)</div><div><br></div><div>print("{}님의 초과근무 수당은 {}입니다.".format(name,pay_overtime))</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-26 16:01:31 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2313945901</guid>
      </item>
      <item>
         <title>전현경</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314812835</link>
         <description><![CDATA[<div>#전현경 2일차 과제</div><div>name&nbsp; = input("이름을 입력해주세요:")</div><div>id_no = input("주민번호 6자리를 입력해주세요:")</div><div>year = id_no[0:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div>print("{}님의 생년월일은 {}년 {}월 {}일 입니다.".format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 03:46:31 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314812835</guid>
      </item>
      <item>
         <title>전현경</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314813507</link>
         <description><![CDATA[<div>#전현경 2일차 과제(2)</div><div>pay=0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요:")</div><div>ep = int(input("근무기간을 이력해주세요:"))</div><div>time = int(input("초과 근무시간을 입력해주세요:"))</div><div>if ep &lt;= 3:</div><div>&nbsp; &nbsp; ep_extra_pay = extra_pay * 0.1&nbsp;</div><div>elif 3 &lt; ep &lt;= 7:</div><div>&nbsp; &nbsp; ep_extra_pay = extra_pay * 0.2&nbsp;</div><div>elif ep &gt;= 8:</div><div>&nbsp; &nbsp; ep_extra_pay = extra_pay * 0.3</div><div>else:</div><div>&nbsp; &nbsp; ep_extra_pay = 0</div><div>extra_pay = (extra_pay + ep_extra_pay) * time</div><div>print("{}님의 초과근무 수당은 {}입니다.".format(name,extra_pay))&nbsp;</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 03:47:14 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314813507</guid>
      </item>
      <item>
         <title>황수미</title>
         <author>tnalxowl</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314818966</link>
         <description><![CDATA[<div>name = input("이름을 입력하세요")</div><div>id_no = input("주민번호를 입력하세요")</div><div>year = id_no[:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div><br></div><div>print("{} 님의 생년월일은 {}년 {}월 {}일 입니다".format(name,year,month,day))</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 03:52:16 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314818966</guid>
      </item>
      <item>
         <title>김현정 2일차 과제2</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314862172</link>
         <description><![CDATA[<div># 아래 빈칸에 들어가는 키워드를 작성해서 코드를 완성해 보세요.</div><div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div><br></div><div># 초과 근무 시간을 입력받아 time 변수에 저장해 보세요.</div><div>time = int(input("초과 근무 시간을 입력해주세요: "))</div><div><br></div><div># if~elif~else문을 이용하여 근무기간이 3년 이하는 10%, 7년 이하는 20%, 8년 이상은 30%을추가하도록 코드를 완성해 보세요.</div><div><br></div><div>if ep &lt;= 3 :</div><div>&nbsp; &nbsp; pay = (extra_pay * 1.1) * time</div><div>elif ep &lt;= 7 :</div><div>&nbsp; &nbsp; pay = (extra_pay * 1.2) * time</div><div>else :</div><div>&nbsp; &nbsp; pay = (extra_pay * 1.3) * time</div><div><br><br></div><div># ***님의 초과근무 수당은 *** 입니다. 라고 출력해 보세요.</div><div>print("{}님의 초과근무 수당은 {}원 입니다.".format(name, int(pay)) )</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 04:37:55 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314862172</guid>
      </item>
      <item>
         <title>황수미</title>
         <author>tnalxowl</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314865918</link>
         <description><![CDATA[<div>pay =0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력하세요")</div><div>ep = int(input("근무기간을 입력해주세요"))</div><div>time = int(input("초과근무 시간을 입력해주세요"))</div><div>if ep &lt;= 3 :</div><div>&nbsp; &nbsp; time_pay= int(time* (extra_pay *1.1))&nbsp;</div><div>elif ep &lt;= 7:</div><div>&nbsp; &nbsp; time_pay= int(time* (extra_pay *1.2))</div><div>else :</div><div>&nbsp; &nbsp; time_pay= int(time* (extra_pay *1.3))</div><div>print("{}님의 초과근무 수당은 {}입니다".format(name,time_pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 04:41:09 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314865918</guid>
      </item>
      <item>
         <title>김현정 2일차 과제1</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314866938</link>
         <description><![CDATA[<div>name = input("이름을 입력하세요 : ")</div><div>id_no = input("주민번호 앞 6자리를 입력하세요 : ")</div><div><br></div><div>year = id_no [:2]</div><div>month = id_no [2:4]</div><div>day = id_no [4:]</div><div><br></div><div>print("{}님의 생년월일은 {}년 {}월 {}일 입니다.".format(name, year, month, day) )</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 04:42:05 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314866938</guid>
      </item>
      <item>
         <title>윤남순</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314870407</link>
         <description><![CDATA[<div>name = input('이름:')</div><div>id_no = input('주민번호 6자리:')</div><div>year = id_no [:2]</div><div>month = id_no [2:4]</div><div>day = id_no [4:6]</div><div><br></div><div>print('{}님의 생년월일은 {}년 {}월 {}일 입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 04:45:05 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2314870407</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2315373308</link>
         <description><![CDATA[<div>name = input("이름을 입력하세요: ")</div><div>id_no = input("주민번호 앞6자리를 입력하세요: ")</div><div>year = id_no[:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div><br></div><div>print("{}님의 생년월일은 {}년{}월{}일 입니다.".format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 11:27:21 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2315373308</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2315373634</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div>time = int(input("초과근무시간을 입력해주세요: "))</div><div><br></div><div>if ep &lt;= 3 :</div><div>&nbsp; &nbsp; pay = int(extra_pay * time * 1.1)</div><div>elif ep &lt;= 7 :</div><div>&nbsp; &nbsp; pay = int(extra_pay * time * 1.2)</div><div>else :</div><div>&nbsp; &nbsp; pay = int(extra_pay * time * 1.3)</div><div><br></div><div>print("{}님의 초과근무 수당은 {}원 입니다.".format(name,pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-27 11:27:41 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2315373634</guid>
      </item>
      <item>
         <title>윤남순 과제2</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2316547365</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div>name = input('이름:')</div><div>ep = int(input('근무시간 입력:'))</div><div>time = int(input('초과근무시간:'))</div><div><br></div><div>if ep &lt;= 3:</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.1</div><div>elif ep &lt;= 7:</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.2</div><div>else:</div><div>&nbsp; &nbsp; time_pay = time*extra_pay*1.3</div><div><br></div><div>print ('{}님의 초과근무수당은 {}원 입니다'.format(name,time_pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-28 00:51:45 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2316547365</guid>
      </item>
      <item>
         <title>배해성</title>
         <author>bcooaua</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317320264</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1713125994/2924d5cdc90b73590443c47542398fbf/image.png" />
         <pubDate>2022-09-28 11:48:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317320264</guid>
      </item>
      <item>
         <title>배해성</title>
         <author>bcooaua</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317341488</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1713125994/1f2b82cd98d8d174347c5682f23a9c9f/image.png" />
         <pubDate>2022-09-28 12:02:28 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317341488</guid>
      </item>
      <item>
         <title>배해성_수정</title>
         <author>bcooaua</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317390420</link>
         <description><![CDATA[<div>급여 계산을 잘 못 해서 수정합니다.<br>직원들 들고 일어날 뻔 했네요 ㅠㅡㅠ</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1713125994/de869923fcbb20b47a2b8e89e9d7a879/image.png" />
         <pubDate>2022-09-28 12:34:17 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2317390420</guid>
      </item>
      <item>
         <title>유나림 (2)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2318407413</link>
         <description><![CDATA[<div>해성쌤 코드를 보고<br>간결한 if블록이 인상 깊어, 해성쌤 코드 따라해서 저도 다시 해보았습니다^ㅡ^<br><br>pay = 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>extra_pay = 11000&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>rate = 0&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div>name = input("이름을 입력해주세요 : ")&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div><div>ep = int(input("근무기간을 입력해주세요 : "))&nbsp; &nbsp; &nbsp;</div><div>time = int(input("초과근무시간을 입력하세요 : "))&nbsp;</div><div><br></div><div>if ep&lt;=3 : rate = 1.1</div><div>elif ep&lt;=7 : rate = 1.2</div><div>else : rate = 1.3&nbsp;</div><div><br></div><div>pay = time * (extra_pay * rate)</div><div><br></div><div>print("{}님의 초과 근무 수당은 {:,.0f}원 입니다.".format(name,pay))</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/34451c34862964b004dd816e71cb34b8/___.png" />
         <pubDate>2022-09-29 00:13:21 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2318407413</guid>
      </item>
      <item>
         <title>박세영</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320452143</link>
         <description><![CDATA[<div>#과제1. 생년월일 확인</div><div><br></div><div>name = input('이름을 입력하세요:')</div><div>id_no = input('주민번호 6자리 입력하세요:')</div><div><br></div><div>year = id_no[:2]&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;# 태어난 년도 슬라이싱</div><div>month = id_no[2:4]&nbsp;&nbsp; &nbsp; &nbsp;# 태어난 월 슬라이싱</div><div>day = id_no[4:]&nbsp; &nbsp; &nbsp; &nbsp;  &nbsp; &nbsp; # 태어난 날 슬라이싱</div><div><br></div><div>print('{}님의 생년월일은 {}년 {}월 {}일 입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 03:49:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320452143</guid>
      </item>
      <item>
         <title>박세영</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320452788</link>
         <description><![CDATA[<div>#과제2. 근무기간에 따른 초과수당계산</div><div><br></div><div>pay = 0</div><div>extra_pay = 11000</div><div><br></div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div>time = int(input('초과 근무 시간을 입력해주세요:'))</div><div><br></div><div>if ep &lt;= 3 :&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; #3년 이상</div><div>&nbsp; &nbsp; overpay = (extra_pay * time)*1.1&nbsp; &nbsp; # 초과수당 = (페이* 초과근무시간)*10%</div><div><br></div><div>elif ep &lt;= 7 :</div><div>&nbsp; &nbsp; overpay = (extra_pay * time)*1.2&nbsp; &nbsp; #7년이하 초과수당 = (페이* 초과근무시간)*20%</div><div>else :</div><div>&nbsp; &nbsp; overpay = (extra_pay * time)*1.3&nbsp; &nbsp; &nbsp;#7년이상 초과수당 = (페이* 초과근무시간)*20%</div><div><br></div><div>print('{}님의 초과근무 수당은{}원 입니다.'.format(name,overpay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 03:49:48 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320452788</guid>
      </item>
      <item>
         <title>박민정_2일차과제1</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320489999</link>
         <description><![CDATA[<div>name=input('이름:')</div><div>id_no=input('주민등록번호6자리:')</div><div><br></div><div>year=id_no[0:2]</div><div>month=id_no[2:4]</div><div>day=id_no[4:6]</div><div><br></div><div>print('{}님의 생년월일은 {}년 {}월 {}일입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 04:40:09 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320489999</guid>
      </item>
      <item>
         <title>최은미_2일차과제1</title>
         <author>cemistyle</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320495720</link>
         <description><![CDATA[<div>#과제1. 생년월일 확인</div><div><br></div><div>name = input("이름을 입력하세요:")</div><div>id_no = input("주민번호 앞6자리를 입력하세요")</div><div>year = id_no[0:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div>print("{}님의 생일은 {}년{}월{}일 입니다)".format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 04:46:54 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320495720</guid>
      </item>
      <item>
         <title>if조건문 문제 (유나림)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320501923</link>
         <description><![CDATA[<div>문제&gt; 나이가 8세 이상, 키가 120cm 이상인 경우만 놀이 기구를 탈 수 있습니다.&nbsp;<br>다음과 같은 형태로 if 구문을 작성하시오.<br><br>- 나이를 입력받습니다.<br>- 나이가 8세 미만이면, '8세 이상이어야 입장 가능합니다'라고 출력합니다.<br>- 나이가 8세 이상이면, 키를 입력받습니다.<br>&nbsp; &nbsp; &nbsp;- 키가 120cm 이상이면 '입장 가능합니다'를 출력합니다.<br>&nbsp; &nbsp; &nbsp;- 키가 120cm 미만이면 '키가 120cm 이상이어야 입장가능합니다.'를 출력합니다.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/762734a3324adbec1b72cb49848e4471/KakaoTalk_20220930_145220124_copy.jpg" />
         <pubDate>2022-09-30 04:54:35 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320501923</guid>
      </item>
      <item>
         <title>최은미 과제2</title>
         <author>cemistyle</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320511326</link>
         <description><![CDATA[<div>#과제2. 근무기간에 따른 초과수당계산</div><div><br></div><div>pay =0</div><div>extra_pay = 11000</div><div><br></div><div>name = input("이름을 입력해주세요")</div><div>ep = int(input("근무기간을 입력해주세요:"))</div><div>time = int(input('초과 근무 시간을 입력해주세요:'))</div><div><br></div><div>if ep &lt;= 3 : &nbsp;</div><div>&nbsp; &nbsp; overpay = (extra_pay*time)*1.1</div><div>elif ep &lt;= 7 :</div><div>&nbsp; &nbsp; pay =int(extra_pay*time*1.2)</div><div>else :&nbsp;</div><div>&nbsp; &nbsp; overpay = (extra_pay*time)*1.3</div><div><br></div><div>print('{}님의 초과근무 수당은{}원 입니다.'.format(name,overpay))</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 05:05:18 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320511326</guid>
      </item>
      <item>
         <title>국어.수학.영어 시험 성적을 입력받아서 평균을 내고 평균값이 90점 이상이면 &quot;A학점 입니다&quot; 80점 이상이면 &quot;B학점 입니다&quot; 70점이상이면 &quot;C학점입니다&quot; 그외엔 &quot;계절학기준비하세요&quot; 란 멘트나오게 하기 </title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320512087</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 05:06:10 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320512087</guid>
      </item>
      <item>
         <title>유나림 (황수미 선생님 문제)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320535171</link>
         <description><![CDATA[<div>ko = int(input("국어 점수 입력 : "))</div><div>ma = int(input("수학 점수 입력 : "))</div><div>en = int(input("영어 점수 입력 : "))</div><div><br></div><div>ave = (ko + ma + en) / 3</div><div><br></div><div>if ave &gt;= 90 :</div><div>&nbsp; &nbsp; print("A학점입니다.")</div><div>elif ave &gt;= 80 :</div><div>&nbsp; &nbsp; print("B학점입니다.")</div><div>elif ave &gt;= 70 :</div><div>&nbsp; &nbsp; print("C학점입니다.")</div><div>else :</div><div>&nbsp; &nbsp; print("계절학기를 준비하세요.")</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/5915c7d61bb97ca6191bfb5ffd4439c6/1_copy.jpg" />
         <pubDate>2022-09-30 05:34:28 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320535171</guid>
      </item>
      <item>
         <title>박민정_2일차 과제2</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320538176</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1829233787/800312544f085e858c72b66f153c76df/2___2_.JPG" />
         <pubDate>2022-09-30 05:38:15 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320538176</guid>
      </item>
      <item>
         <title>영화 &#39;공조2&#39;가 엄청 재밌다고 하는데요</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320554779</link>
         <description><![CDATA[<div>15세이상 관람가 영화죠<br>사용자의 나이를 입력하면 영화의 관람 가능 여부를 알려주는 프로그램을 만들어보세요</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 05:58:34 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320554779</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320585296</link>
         <description><![CDATA[<div>age = int(input("나이를 입력하세요 : "))</div><div>height = 0</div><div><br></div><div>if age &gt;= 8 :</div><div>&nbsp; &nbsp; height = int(input("키를 입력하세요 : "))</div><div>&nbsp; &nbsp; if height &gt;= 120 :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장 가능합니다.")&nbsp;</div><div>&nbsp; &nbsp; else :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("키가 120cm 이상이어야 입장 가능합니다.")</div><div>else :&nbsp;</div><div>&nbsp; &nbsp; print("8세 이상이어야 입장 가능합니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 06:33:10 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320585296</guid>
      </item>
      <item>
         <title>유나림 (이하나 선생님 문제)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320596681</link>
         <description><![CDATA[<div>age = int(input("만 나이를 입력하세요 : "))&nbsp; &nbsp; &nbsp;</div><div>parent = ''</div><div><br></div><div>if age &lt; 15 :</div><div>&nbsp; &nbsp; parent = input("부모 동반 여부(예/아니요) : ")</div><div>&nbsp; &nbsp; if parent == "예" :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("부모님과 동반하여, 관람 가능합니다.")</div><div>&nbsp; &nbsp; else :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("관람이 불가능합니다.")</div><div>else :</div><div>&nbsp; &nbsp; print("관람 가능합니다.")</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/9575083493fff1ab6348846c110cbce0/1_copy.jpg" />
         <pubDate>2022-09-30 06:44:26 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320596681</guid>
      </item>
      <item>
         <title>(전현경) 윤년알아보기</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320615016</link>
         <description><![CDATA[<div>년도를 입력받아 해당년도가  윤년인지 평년인지 출력하는 프로그램을 작성하시오.<br><br></div><div>윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다.<br><br></div><div>예를 들어, 2012년은 4의 배수이면서 100의 배수가 아니라서 윤년이다. 1900년은 100의 배수이고 400의 배수는 아니기 때문에 윤년이 아니다. 하지만, 2000년은 400의 배수이기 때문에 윤년이다.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1679504603/a8680c5053b93918b0e64c528548490f/result.png" />
         <pubDate>2022-09-30 07:01:09 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320615016</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320629143</link>
         <description><![CDATA[<div>year = int(input('년도를 입력해주세요 : '))</div><div><br></div><div>if (year%4 == 0 and year%100 != 0) or (year%400 == 0) :</div><div>&nbsp; &nbsp; print('{}년은 윤년입니다.'.format(year))</div><div>else :</div><div>&nbsp; &nbsp; print('{}년은 평년입니다.'.format(year))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 07:14:15 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320629143</guid>
      </item>
      <item>
         <title>남현숙-과제 1</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320632639</link>
         <description><![CDATA[<div>name=input("이름을 입력하세요:")<br><br>id_no=input("주민번호 6자리를 저장합니다.:")<br><br>year = id_no[0:2]<br><br>month = id_no[3:4]<br><br>day = id_no[5:6]<br><br>print("{}님의 {}년{}월{}일 입니다.".format(name,year,month,day))<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 07:17:17 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320632639</guid>
      </item>
      <item>
         <title>남현숙=과제2</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320656115</link>
         <description><![CDATA[<div>pay=0<br><br>extra_pay = 11000<br>name = input("이름을 입력해주세요:")<br>ep = int(input("근무기간을 입력해주세요:"))<br>time=int(input("초과근무시간을 입력해주세요:"))<br><br>if ep &lt;= 3 :<br>&nbsp; &nbsp; pay=int((extra_pay*time)*1.1)<br>elif ep &lt;= 7 :<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pay=int((extra_pay*time)*1.2)<br>else :<br>&nbsp; &nbsp; pay=int((extra_pay*time)*1.3)<br><br>print("{}님의 초과 근무수당은 {}원입니다".format(name,pay))<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 07:38:25 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320656115</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320665191</link>
         <description><![CDATA[<div>ko=int(input("국어 점수를 입력하세요:"))<br>ma=int(input("수학점수를 입력하세요:"))<br>en=int(input("영어점수를 입력하세요:"))<br><br>ave=(ko+ma+en)/3<br><br>if ave&gt;= 90 :<br>&nbsp; &nbsp; print("A 학점 입니다.")<br><br>elif ave &gt;= 80 :<br>&nbsp; &nbsp; print("B학점입니다.")<br><br>elif ave &gt;= 70 :<br>&nbsp; &nbsp; print("C학점입니다.")<br><br>else :<br>&nbsp; &nbsp; print("계절학기를 준비하세요")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 07:47:33 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320665191</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320684411</link>
         <description><![CDATA[<div>age=int(input("만 나이를 입력하세요:"))<br><br>if age &gt;= 15 :<br>&nbsp; &nbsp; print("영화 관람이 가능합니다.")<br><br>if age&lt;15 :<br>&nbsp; &nbsp; parent=input("부모님 동반여부를 알려주세요:(예/아니오)")<br><br>if parent=="예" :<br>&nbsp; &nbsp; print("관람 가능합니다.")<br><br>else :<br>&nbsp; &nbsp; print("관람 불가능합니다")<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 08:07:54 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320684411</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320769517</link>
         <description><![CDATA[<div>age = int(input('나이를 입력하세요 :'))</div><div>if age &gt;=8 :</div><div>&nbsp; height = int(input('키를 입력하세요(cm) :'))</div><div>&nbsp; if height &gt;= 120 :</div><div>&nbsp; &nbsp; print('입장 가능합니다.')</div><div>&nbsp; else :</div><div>&nbsp; &nbsp; print('키가 120cm이상이어야 입장 가능합니다.')</div><div>else :</div><div>&nbsp; print('8세 이상이어야 입장 가능합니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 09:18:10 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320769517</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320777258</link>
         <description><![CDATA[<div>k = int(input('국어 점수 :'))</div><div>e = int(input('영어 점수 :'))</div><div>m = int(input('수학 점수 :'))</div><div>a = (k + e + m)/3</div><div>if a &gt;= 90 :</div><div>&nbsp; print('A학점 입니다.')</div><div>elif a &gt;= 80 :</div><div>&nbsp; print('B학점 입니다.')</div><div>elif a &gt;= 70 :</div><div>&nbsp; &nbsp;print('C학점 입니다.')</div><div>else :</div><div>&nbsp; &nbsp;print('계절학기를 준비하세요.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 09:25:12 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320777258</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320787885</link>
         <description><![CDATA[<div>age = int(input('관람자의 만 나이를 입력하세요.:'))</div><div>if age &gt;= 15 :</div><div>&nbsp; print('관람 가능합니다. 즐거운 시간 되세요!')</div><div>else :</div><div>&nbsp; print('관람이 불가능합니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 09:36:14 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320787885</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320795473</link>
         <description><![CDATA[<div>y = int(input('알아보고자 하는 년도를 입력하세요. :'))</div><div>if y % 4 == 0 and y % 100 != 0 or y % 400 == 0 :</div><div>&nbsp; print('{}년은 윤년입니다.'.format(y))</div><div>else :</div><div>&nbsp; print('{}년은 윤년이 아닙니다.'.format(y))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 09:44:28 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320795473</guid>
      </item>
      <item>
         <title>띠 알아보기</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320804586</link>
         <description><![CDATA[<div>사용자에게&nbsp;태어난 연도를 입력받아 띠를 출력하는 프로그램을 작성해주세요. 작성 시 입력받은 연도를 12로 나눈 나머지를 사용합니다. 나머지가 0~11일 때 각각 쥐, 소, 호랑이, 토끼, 용, 뱀, 말, 양, 원숭이, 닭, 개, 돼지띠입니다.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 09:53:32 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320804586</guid>
      </item>
      <item>
         <title>유나림 (정주황 선생님 문제)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320830211</link>
         <description><![CDATA[<div>year = int(input("태어난 연도를 입력하세요 : "))</div><div>sign = '' #Korean zodiac sign(12간지)</div><div><br></div><div>if year%12 == 0 : sign = '원숭이'</div><div>elif year%12 == 1 : sign = '닭'</div><div>elif year%12 == 2 : sign = '개'</div><div>elif year%12 == 3 : sign = '돼지'</div><div>elif year%12 == 4 : sign = '쥐'</div><div>elif year%12 == 5 : sign = '소'</div><div>elif year%12 == 6 : sign = '호랑이'</div><div>elif year%12 == 7 : sign = '토끼'</div><div>elif year%12 == 8 : sign = '용'</div><div>elif year%12 == 9 : sign = '뱀'</div><div>elif year%12 == 10 : sign = '말'</div><div>else : sign = '양'</div><div><br></div><div>print("{}년생은 {}띠입니다.".format(year,sign)) &nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/3720bdb1f59d91694838ac27f31c7eb8/1_copy.jpg" />
         <pubDate>2022-09-30 10:19:48 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320830211</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320964649</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/a63df643f4cba18c8c42f8b664d8060e/image.png" />
         <pubDate>2022-09-30 12:25:14 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320964649</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320982555</link>
         <description><![CDATA[<div>age = int(input('나이를 입력하세요:'))</div><div><br><br></div><div>if age &lt; 8:</div><div>&nbsp; &nbsp; print('8세 이상이어야 입장이 가능합니다')</div><div>elif age &gt; 8:</div><div>&nbsp; &nbsp; &nbsp;height = int(input('키를 입력하세요:'))</div><div>&nbsp; &nbsp; &nbsp;if height &gt;120:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print('입장이 가능합니다')</div><div>&nbsp; &nbsp; &nbsp;else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print('키가 120cm이상이어야 입장이 가능합니다')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 12:39:06 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2320982555</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321038081</link>
         <description><![CDATA[<div>name = input('이름을 입력하세요')</div><div>id_no = input('주민번호 6자리를 입력하세요')</div><div>year = id_no[0:2]</div><div>month = id_no[2:4]</div><div>day = id_no[4:6]</div><div>print('{}님의 생년월일은 {}년 {}월 {}일 입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 13:18:54 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321038081</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321044786</link>
         <description><![CDATA[<div>number = int(input('숫자를 입력해주세요.(0~255) :'))</div><div>N = number - 20</div><div>if N &lt; 0 :</div><div>&nbsp; print('0')</div><div>elif 0 &lt;= N &lt;= 255 :</div><div>&nbsp; print('{}'.format(N))</div><div>else :&nbsp;</div><div>&nbsp; print('255')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 13:23:22 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321044786</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321073208</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/343a0824755a0b5a00846f008a1770a5/image.png" />
         <pubDate>2022-09-30 13:41:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321073208</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321074383</link>
         <description><![CDATA[<div>int_in = int(input("입력값 : "))</div><div><br></div><div>cal = int_in - 20</div><div><br></div><div>if cal &lt; 0 :</div><div>&nbsp; &nbsp; print('출력값 :',0)</div><div>elif cal &gt; 255 :</div><div>&nbsp; &nbsp; print('출력값 :',255)</div><div>else :</div><div>&nbsp; &nbsp; print('출력값 :',cal)&nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/4d5325b3ed27795810f85def74fd57b8/3_copy.jpg" />
         <pubDate>2022-09-30 13:41:50 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321074383</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321098459</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/c5d47361289bb5f160667f5b6b7464e6/image.png" />
         <pubDate>2022-09-30 13:57:00 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321098459</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321177218</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/f310430ee87558426127315fa6a72943/image.png" />
         <pubDate>2022-09-30 14:46:41 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321177218</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321185890</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/82f546ae7e21dcd3087f84f15df37b1c/image.png" />
         <pubDate>2022-09-30 14:52:24 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321185890</guid>
      </item>
      <item>
         <title>유나림 (2)</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321212935</link>
         <description><![CDATA[<div>위에 선아쌤 하신 것 보고 놀라워하며 ^^b<br>저도 선아쌤이 하신 방법으로도 다시 해보았어요.<br>-----------------------------------<br>year = int(input("태어난 연도를 입력하세요 : "))<br><br></div><div>sign = ['원숭이', '닭', '개', '돼지', '쥐', '소', '호랑이', '토끼', '용', '뱀', '말', '양']&nbsp;<br><br></div><div>cal = year%12<br><br></div><div>print('{}년생은 {}띠입니다.'.format(year,sign[cal]))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-30 15:10:29 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321212935</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321863938</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div><br></div><div>name = input('이름을 입력해주세요:')</div><div>ep = int(input('근무기간을 입력해주세요:'))</div><div>time = int(input('초과 근무시간을 입력하세요'))</div><div><br></div><div>if ep &lt;= 3:</div><div>&nbsp; &nbsp; overpay = extra_pay*time*1.1</div><div>elif ep&lt;= 7:</div><div>&nbsp; &nbsp; overpay = extra_pay*time*1.2</div><div>else:</div><div>&nbsp; &nbsp; overpay = extra_pay*time*1.3</div><div>print('{}님의 초과근무수당은 {}원 입니다.'.format(name,overpay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-01 08:25:45 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2321863938</guid>
      </item>
      <item>
         <title>최선희</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322030658</link>
         <description><![CDATA[<div>과제&nbsp;1올립니다~</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1820180034/f6bfbe912a6c630d66b08e9ec2b6444e/image.png" />
         <pubDate>2022-10-01 14:07:40 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322030658</guid>
      </item>
      <item>
         <title>최선희 과제2 올립니다.</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322045834</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1820180034/288c3f5274d1d5daf032c0fb3a4c2d07/image.png" />
         <pubDate>2022-10-01 14:29:09 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322045834</guid>
      </item>
      <item>
         <title>최선희</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322055260</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1820180034/146bf49a052e8a2db00c5a6956a2fe6d/image.png" />
         <pubDate>2022-10-01 14:42:47 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322055260</guid>
      </item>
      <item>
         <title>최지원 (과제1)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322061143</link>
         <description><![CDATA[<div>name = input('이름을 입력하세요')</div><div>id_no = input('주민번호 앞자리 6 숫자를 입력하세요')</div><div><br></div><div>year = id_no[:2]</div><div>month =id_no[2:4]</div><div>day = id_no[5:6]</div><div><br></div><div>print('{}님의 생년월일은 {}년 {}월{}입니다.'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-01 14:51:39 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322061143</guid>
      </item>
      <item>
         <title>최지원 (과제2)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322074776</link>
         <description><![CDATA[<div>pay =0</div><div>extra_pay = 11000</div><div>name = input('이름을 입력해주세요 :')</div><div>ep=int(input('근무기간을 입력해주세요 :'))</div><div><br></div><div>time = int(input('초과근무시간을 입력하세요 : '))</div><div><br></div><div>if ep&lt;=3 :</div><div>&nbsp; &nbsp; overtime_pay = int(time*extra_pay*1.1)</div><div>&nbsp; &nbsp;&nbsp;</div><div>elif ep&lt;=7 :</div><div>&nbsp; &nbsp; overtime_pay = int(time*extra_pay*1.2)</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; overtime_pay = int(time*extra_pay*1.3)&nbsp; &nbsp;&nbsp;</div><div><br></div><div>print( '{}님의 초과근무 수당은 {}원 입니다'.format(name,overtime_pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-01 15:12:25 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322074776</guid>
      </item>
      <item>
         <title>최지원</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322086414</link>
         <description><![CDATA[<div>age =int(input('만 나이를 입력해주세요 : '))</div><div>height = 0</div><div><br></div><div>if age&lt;8 :</div><div>&nbsp; &nbsp; print ('8세 이상이어야 입장 가능합니다.')</div><div><br></div><div>if age&gt;=8 :</div><div>&nbsp; &nbsp; height = int(input('키를 입력해주세요 : '))</div><div>&nbsp; &nbsp; if height &gt;= 120:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print('입장가능합니다.')</div><div>&nbsp; &nbsp; elif height &lt; 120 :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print ('키가 120cm 이상이여야 입장가능합니다')</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-01 15:30:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322086414</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322325261</link>
         <description><![CDATA[<div>어떤 농장에서는 수박이 10kg이 넘으면 1등급, 그렇지 않고 7kg이 넘으면 2등급,, 그렇지 않고 4kg이 넘으면 3등급, 나머지는 4등급을 준다고 한다. 이 수박의 등급을 정하는 파이썬 코드를 작성해주세요.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 00:38:58 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322325261</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322332942</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/b7bbf1f66b64511e25b70a007baf368b/image.png" />
         <pubDate>2022-10-02 01:07:08 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322332942</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322335030</link>
         <description><![CDATA[<div>weight = int(input('수박 무게(kg) : '))</div><div>grade = 0</div><div><br></div><div>if weight &gt;= 10 :</div><div>&nbsp; &nbsp; grade = 1</div><div>elif weight &gt;= 7 :</div><div>&nbsp; &nbsp; grade = 2</div><div>elif weight &gt;= 4 :</div><div>&nbsp; &nbsp; grade = 3</div><div>else :</div><div>&nbsp; &nbsp; grade = 4</div><div><br></div><div>print(grade,'등급',sep='')</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/10e996ed25c6e5c7f907c964850e380c/1_copy.jpg" />
         <pubDate>2022-10-02 01:14:44 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322335030</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322336718</link>
         <description><![CDATA[<div>age = int(input("나이를 입력하세요."))</div><div><br></div><div>if age &lt; 8 :</div><div>&nbsp; &nbsp; print("8세 이상이어야 입장 가능합니다.")</div><div><br></div><div>elif age &gt;= 8 :</div><div>&nbsp; &nbsp; height = int(input("키를 입력하세요"))</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; if height &gt;= 120 :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장이 가능합니다.")</div><div><br></div><div>&nbsp; &nbsp; else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("키가 120cm 이상이어야 입장 가능합니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 01:21:22 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322336718</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322339833</link>
         <description><![CDATA[<div>K = int(input("국어 점수를 입력하세요: "))</div><div>M = int(input("수학 점수를 입력하세요: "))</div><div>E = int(input("영어 점수를 입력하세요: "))</div><div>a = (K+M+E)/3</div><div><br></div><div>if a &gt;= 90 :</div><div>&nbsp; &nbsp; print("A학점 입니다.")</div><div><br></div><div>elif a &gt;= 80 :</div><div>&nbsp; &nbsp; print("B학점 입니다.")</div><div><br></div><div>elif a &gt;= 70 :</div><div>&nbsp; &nbsp; print("C학점 입니다")</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print("계절학기를 준비하세요.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 01:32:56 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322339833</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322341053</link>
         <description><![CDATA[<div>age = int(input("나이를 입력하세요: "))</div><div><br></div><div>if age &gt;= 15 :</div><div>&nbsp; &nbsp; print("관람이 가능합니다.")</div><div><br></div><div>else:</div><div>&nbsp; &nbsp; print("관람이 불가능합니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 01:37:45 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322341053</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322343990</link>
         <description><![CDATA[<div>weight = int(input("수박의 무게를 입력하세요(kg): "))</div><div><br></div><div>if weight &gt;= 10 :</div><div>&nbsp; &nbsp; print("1등급 입니다.")</div><div><br></div><div>elif weight &gt;= 7 :</div><div>&nbsp; &nbsp; print("2등급 입니다.")</div><div><br></div><div>elif weight &gt;= 4 :</div><div>&nbsp; &nbsp; print("3등급 입니다.")</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print("4등급 입니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 01:47:43 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322343990</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322352208</link>
         <description><![CDATA[<div>y = int(input("년도를 입력해주세요: "))</div><div><br></div><div>if y % 4 == 0 and y % 100 != 0 or y % 400 == 0 :</div><div>&nbsp; &nbsp; print(y,"년은 윤년입니다.")</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print(y,"년은 윤년이 아닙니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 02:19:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322352208</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322356016</link>
         <description><![CDATA[<div>b_y = int(input("태어난 해를 입력해 주세요: "))</div><div>y = b_y % 12</div><div><br></div><div>if y == 0:</div><div>&nbsp; &nbsp; print("원숭이 띠입니다.")</div><div>elif y == 1:</div><div>&nbsp; &nbsp; print("닭 띠입니다.")</div><div>elif y == 2:</div><div>&nbsp; &nbsp; print("개 띠입니다.")</div><div>elif y == 3:</div><div>&nbsp; &nbsp; print("돼지 띠입니다.")</div><div>elif y == 4:</div><div>&nbsp; &nbsp; print("쥐 띠입니다.")</div><div>elif y == 5:</div><div>&nbsp; &nbsp; print("소 띠입니다.")</div><div>elif y == 6:</div><div>&nbsp; &nbsp; print("호랑이 띠입니다.")</div><div>elif y == 7:</div><div>&nbsp; &nbsp; print("토끼 띠입니다.")</div><div>elif y == 8:</div><div>&nbsp; &nbsp; print("용 띠입니다.")</div><div>elif y == 9:</div><div>&nbsp; &nbsp; print("뱀 띠입니다.")</div><div>elif y == 10:</div><div>&nbsp; &nbsp; print("말 띠입니다.")</div><div>elif y == 11:</div><div>&nbsp; &nbsp; print("양 띠입니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 02:31:59 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322356016</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322360682</link>
         <description><![CDATA[<div>n = int(input("입력값: "))</div><div>a = n - 20</div><div><br></div><div>if a &lt; 0 :</div><div>&nbsp; &nbsp; print("출력값:",0)</div><div><br></div><div>elif a &gt; 255 :</div><div>&nbsp; &nbsp; print("출력값:",255)</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print("출력값:",a)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 02:47:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322360682</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322365912</link>
         <description><![CDATA[<div><br>길이, 부피, 무게나 금액을 표기할 때 1000을 ‘k’로 표기하기로 한다. 예를 들어, 3000m는 3km로 표기한다.<br>입력받은 숫자가 1000보다 크면 1자리부터 100자리까지의 숫자를 생략하고 ‘k’를 붙여 출력한다.<br><br>입력값:1000 출력값:1k<br>입력값:999   출력값 999<br>입력값:3999 출력값:3k</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 03:05:47 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322365912</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322370776</link>
         <description><![CDATA[<div>num = input("입력값 : ")</div><div>if len(num) &gt;= 4 :</div><div>&nbsp; &nbsp; print('출력값 : ',num[:-3],'k',sep='')&nbsp;</div><div>else :</div><div>&nbsp; &nbsp; print('출력값 :',num)</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/d52065cdb83a1f10132c0c7ee701a366/20221002_122931.png" />
         <pubDate>2022-10-02 03:21:02 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322370776</guid>
      </item>
      <item>
         <title>유나림 2</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322380062</link>
         <description><![CDATA[<div>num = int(input("입력값 : "))</div><div>if num//1000 &gt;= 1 :</div><div>&nbsp; &nbsp; print('출력값 : ',num//1000,'k',sep='')</div><div>else :</div><div>&nbsp; &nbsp; print('출력값 :',num)&nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/fc79f0c24f0199e023f1cf2ca0ff21f5/1.png" />
         <pubDate>2022-10-02 03:52:39 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322380062</guid>
      </item>
      <item>
         <title>조건문 문제_안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322385815</link>
         <description><![CDATA[<div>&lt;물건 주문&gt;&nbsp;<br> 최저 구매금액이 2만 원이고, 2만 원 이상 5만 원 미만이면 구매금액에 배송비 2500원이 추가되며, 5만 원 이상이면 무료배송이다.&nbsp;<br> 구매금액을 입력받아 금액이 2만 원 미만이면 ‘주문금액이 부족합니다.’를 출력. 2만 원 이상, 5만 원 미만이면 ‘배송비 2500원이 추가됩니다.’를, 5만 원 이상이면 ‘무료배송됩니다.’를 출력. 그리고 모든 경우에 대해 실제 결제금액을 알려 주고 프로그램을 종료하겠습니다. 프로그램을 작성해 봅시다.<br><br></div><pre>&lt;실행결과&gt;
구매금액은? 20000 
배송비 2500원이 추가됩니다.
최종 결제금액은 22500 원입니다.</pre>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 04:12:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322385815</guid>
      </item>
      <item>
         <title>답안_안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322386382</link>
         <description><![CDATA[<div>price = int(input('구매금액은? '))</div><div>if price &lt; 20000:</div><div>&nbsp; &nbsp; print('주문금액이 부족합니다.')</div><div>elif price &lt; 50000:</div><div>&nbsp; &nbsp; print('배송비 2500원이 추가됩니다.')</div><div>&nbsp; &nbsp; price += 2500</div><div>&nbsp; &nbsp; print('최종 결제금액은', price, '원 입니다.')</div><div>else:</div><div>&nbsp; &nbsp; print('무료배송됩니다.')</div><div>&nbsp; &nbsp; print('최종 결제금액은', price, '원 입니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 04:14:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322386382</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322396728</link>
         <description><![CDATA[<div>price = int(input('구매금액은? '))</div><div>if price &lt; 20000 :</div><div>&nbsp; &nbsp; print('주문 금액이 부족합니다.')</div><div>&nbsp; &nbsp; print('{:,}원 이상 추가해주세요.'.format(20000-price))</div><div>elif price &lt; 50000 :</div><div>&nbsp; &nbsp; print('배송비 2,500원이 추가됩니다.')</div><div>&nbsp; &nbsp; print('최종 결제금액은 {:,}원입니다.'.format(price+2500))</div><div>else :</div><div>&nbsp; &nbsp; print('무료배송됩니다.')</div><div>&nbsp; &nbsp; print('최종 결제금액은 {:,}원입니다.'.format(price))</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/4237a9f4c489fa6af270cd6b97b6452f/2_copy.jpg" />
         <pubDate>2022-10-02 04:51:50 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322396728</guid>
      </item>
      <item>
         <title>남궁윤 (과제 1)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322443319</link>
         <description><![CDATA[<div>name = input("이름을 알려주세요 ")</div><div><br></div><div>id_no = input("주민번호 6자리를 입력해주세요. ")&nbsp; </div><div><br></div><div>year = id_no[:2] &nbsp;</div><div><br></div><div>month = id_no[2:4]</div><div><br></div><div>day = id_no[4:6]</div><div><br></div><div>print("{}님의 생년월일은 {}년 {}월 {}일 입니다".format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 07:37:43 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322443319</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322446023</link>
         <description><![CDATA[<div>a = int(input('나이를 입력하세요:'))</div><div><br></div><div>if a &lt; 8:</div><div>&nbsp; &nbsp; print('8세 이상이어야 입장 가능합니다.')</div><div>else:</div><div>&nbsp; &nbsp; h = int(input('키를 입력하세요'))</div><div>&nbsp; &nbsp; if h &gt;= 120:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print('입장 가능합니다.')</div><div>&nbsp; &nbsp; else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print('키가 120 이상이어야 입장가능합니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 07:46:02 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322446023</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322447242</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163047/d1bd3f7b55bca3e3f354aa129d36f4d0/image.png" />
         <pubDate>2022-10-02 07:49:33 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322447242</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322459996</link>
         <description><![CDATA[<div>k = int(input('국어 점수를 입력하세요:'))</div><div>m = int(input('수학 점수를 입력하세요:'))</div><div>e = int(input('영어 점수를 입력하세요:'))</div><div>average = (k + m + e)/3</div><div><br></div><div>if average &gt;= 90:</div><div>&nbsp; &nbsp; print('A학점 입니다.')</div><div>elif average &gt;= 80:</div><div>&nbsp; &nbsp; print('B학점 입니다.')</div><div>elif average &gt;= 70:</div><div>&nbsp; &nbsp; print('c학점 입니다.')</div><div>else:</div><div>&nbsp; &nbsp; print('계절학기 준비하세요')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 08:26:17 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322459996</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322467977</link>
         <description><![CDATA[<div>year = int(input('년도를 입력해주세요:'))</div><div><br></div><div>if (year%4 == 0 and year%100 != 0) or (year%400 ==0):</div><div>&nbsp; &nbsp; print('{}년은 윤년입니다.'.format(year))</div><div>else:</div><div>&nbsp; &nbsp; print('{}년은 평년입니다.'.format(year))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 08:45:35 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322467977</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322473268</link>
         <description><![CDATA[<div>p = int(input('구매한금액:'))</div><div><br></div><div>if p &gt;= 50000:</div><div>&nbsp; &nbsp; print('무료배송됩니다.\n최종 결제금액은 ' ,p,'원입니다',sep='')</div><div>elif p &gt;= 20000:</div><div>&nbsp; &nbsp; p += 2500</div><div>&nbsp; &nbsp; print('배송비 2500원이 추가됩니다')</div><div>&nbsp; &nbsp; print('최종 결제금액은 ',p,'원입니다',sep='')</div><div>else:</div><div>&nbsp; &nbsp; lp = 20000-p</div><div>&nbsp; &nbsp; print('주문금액이 ',lp,'원 부족합니다.',sep='')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 09:00:13 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322473268</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322477898</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/ca4116c2141317eb3e9635387c97dfcc/image.png" />
         <pubDate>2022-10-02 09:11:50 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322477898</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322479926</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/346f270e5e22f6669e7262e7bd2c2436/image.png" />
         <pubDate>2022-10-02 09:17:38 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322479926</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322481755</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/9a04429bdd1faa15981e7cdbd7c36ee3/image.png" />
         <pubDate>2022-10-02 09:22:53 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322481755</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322483130</link>
         <description><![CDATA[<div>a = int(input('입력값:'))</div><div>answer = a-20</div><div><br></div><div>if answer &lt; 0:</div><div>&nbsp; &nbsp; print('출력값:',0)</div><div>elif answer &gt; 255:</div><div>&nbsp; &nbsp; print('출력값:',255)</div><div>else:</div><div>&nbsp; &nbsp; print('출력값:',answer)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 09:26:50 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322483130</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322484795</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/6f87cdda800163cda1d01dd73436ee82/image.png" />
         <pubDate>2022-10-02 09:31:19 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322484795</guid>
      </item>
      <item>
         <title>안진경</title>
         <author>a01090765550</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322486727</link>
         <description><![CDATA[<div>w = int(input('수박의 무게를 입력하세요:'))</div><div><br></div><div>if w &gt;= 10:</div><div>&nbsp; &nbsp; print('1등급 입니다.')</div><div>elif w &gt;= 7:</div><div>&nbsp; &nbsp; print('2등급 입니다.')</div><div>elif w &gt;= 4:</div><div>&nbsp; &nbsp; print('3등급 입니다.')</div><div>else:</div><div>&nbsp; &nbsp; print('4등급 입니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 09:35:55 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322486727</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322493051</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/1bac0ec921f7e526c749824dc1a66512/image.png" />
         <pubDate>2022-10-02 09:51:15 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322493051</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322495716</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/e245d4d51bef9e49a2b21b112249d912/image.png" />
         <pubDate>2022-10-02 09:57:39 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322495716</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322497640</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/8c85c272312090370a460275964cc19d/image.png" />
         <pubDate>2022-10-02 10:01:51 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322497640</guid>
      </item>
      <item>
         <title>남궁윤 (과제2)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322501336</link>
         <description><![CDATA[<div>pay = 0</div><div>extra_pay = 11000</div><div>name = input("이름을 입력해주세요: ")</div><div>ep = int(input("근무기간을 입력해주세요: "))</div><div><br></div><div>time = int(input("초과 근무 시간을 입력해 주세요 : "))</div><div><br></div><div>if ep &lt;= 3: &nbsp;</div><div>&nbsp; &nbsp; totalpay = extra_pay* time * 1.1</div><div>&nbsp;</div><div>elif ep &lt;= 7:</div><div>&nbsp; &nbsp; totalpay = extra_pay * time * 1.2</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; totalpay = extra_pay * time * 1.3</div><div><br></div><div>print('{}님의 초과 근무수당은 {}원 입니다'.format(name,int(totalpay)))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 10:10:40 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322501336</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322503712</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/d3e97b68f1517df031fef06633fe710f/image.png" />
         <pubDate>2022-10-02 10:16:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322503712</guid>
      </item>
      <item>
         <title>나이에 알맞은 학생찾기문제 (남궁윤)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322505769</link>
         <description><![CDATA[<div>태어난 년도를 입력받아서<br>현재 무슨 학생인지 출력해주는<br>if 조건문을 만들어봅니다.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831133704/154fa1bef5071b12b2f5b3a491135832/__.png" />
         <pubDate>2022-10-02 10:20:59 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322505769</guid>
      </item>
      <item>
         <title>문제 답안(남궁윤)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322512599</link>
         <description><![CDATA[<div>bday = int(input("태어난 년도를 입력해주세요 "))</div><div><br></div><div>age = 2022 - bday +1</div><div><br></div><div># print(age)</div><div><br></div><div>if age &gt;= 20 and age &lt;= 26:</div><div>&nbsp; &nbsp; grade = "대학생"</div><div><br></div><div>elif age &gt;= 17 and age &lt;= 20:</div><div>&nbsp; &nbsp; grade = "고등학생"</div><div><br></div><div>elif age &gt;= 14 and age &lt;= 17:</div><div>&nbsp; &nbsp; grade = "중학생"</div><div><br></div><div>elif age &gt;= 8 and age &lt;= 14:</div><div>&nbsp; &nbsp; grade = "초등학생"</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; grade="학생이 아닙니다"</div><div><br></div><div>print(grade)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 10:37:23 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322512599</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322512659</link>
         <description><![CDATA[<div>present_year = int(input('현재년도 : '))</div><div>birth_year = int(input('출생년도 : '))</div><div>age = present_year - birth_year + 1</div><div>result =''</div><div><br></div><div>if 20 &lt;= age &lt;= 26 :&nbsp;</div><div>&nbsp; &nbsp; result = '대학생입니다.'</div><div>elif 17 &lt;= age &lt; 20 :&nbsp;</div><div>&nbsp; &nbsp; result = '고등학생입니다.'</div><div>elif 14 &lt;= age &lt; 17 :</div><div>&nbsp; &nbsp; result = '중학생입니다.'</div><div>elif 8 &lt;= age &lt; 14 :</div><div>&nbsp; &nbsp; result = '초등학생입니다.' &nbsp;</div><div>else :</div><div>&nbsp; &nbsp; result = '학생이 아닙니다.'</div><div><br></div><div>print(age,'세, ',result,sep='') &nbsp;</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/cada0261257ab285fd8ad382dad2c8a9/1_copy.jpg" />
         <pubDate>2022-10-02 10:37:31 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322512659</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322515635</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/47acedc3487467c23e94d3203b9ebe14/image.png" />
         <pubDate>2022-10-02 10:44:25 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322515635</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322522274</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/47862e20f5f3b983b7117ebe4362ff9c/image.png" />
         <pubDate>2022-10-02 10:59:38 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322522274</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322524007</link>
         <description><![CDATA[<div>a= int(input('숫자를 입력해 주세요(0~255):'))<br>b=a-20<br><br>if b&lt;0 :<br>&nbsp; &nbsp; print('0을 출력하세요')<br><br>elif b&gt;255:<br>&nbsp; &nbsp; print('255를 출력하세요')<br><br>else :<br>&nbsp; &nbsp; print(b)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:03:57 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322524007</guid>
      </item>
      <item>
         <title>남궁윤 (1번문제 )</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322525369</link>
         <description><![CDATA[<div>print(" 조건을 충족해야 놀이기구를 탈수 있습니다. ")</div><div>age = int(input(" 나이를 입력해주세요&nbsp; "))</div><div><br></div><div>if age &gt;= 8:</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; tall = int(input("키를 입력해 주세요.&nbsp; "))</div><div><br><br></div><div>&nbsp; &nbsp; if tall &gt;= 120:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장이 가능합니다.")</div><div><br></div><div>&nbsp; &nbsp; else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장이 불가능합니다.")</div><div><br></div><div>else:</div><div>&nbsp; &nbsp; &nbsp;print("8세 이상이어야 입장 가능합니다.")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:07:19 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322525369</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322526213</link>
         <description><![CDATA[<div>a=int(input('수박의 무게를 입력하세요:'))<br><br>if a&gt;=10:<br>&nbsp; &nbsp; print('1등급입니다.')<br><br>elif a&gt;=7 :<br>&nbsp; &nbsp; print('2등급입니다.')<br><br>elif a&gt;=4 :<br>&nbsp; &nbsp; print('3등급입니다.')<br><br>else:<br>&nbsp; &nbsp; print('4등급입니다.')<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:09:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322526213</guid>
      </item>
      <item>
         <title>배해성</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322526648</link>
         <description><![CDATA[<div>국.영.수.컴퓨터. 네 과목의 점수를 입력 받아,&nbsp;<br>평균이 80점 이상이고 한 과목도 60점 미만이 아닌 경우 PASS, 나머지는 FAIL인 프로그램</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1746905676/c490da3fde4ca07136ee6245fc8487df/image.png" />
         <pubDate>2022-10-02 11:10:24 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322526648</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322534346</link>
         <description><![CDATA[<div>ko=int(input('국어점수를 입력하세요:'))<br>en=int(input('영어점수를 입력하세요:'))<br>ma=int(input('수학점수를 입력하세요:'))<br>co=int(input('컴퓨터점수를 입력하세요:'))<br><br>ave=(ko+en+ma+co)/4<br>print(ave)<br>if ave&gt;=80:<br>&nbsp; &nbsp; if ko&gt;=60:<br>&nbsp; &nbsp; &nbsp; &nbsp; if en&gt;=60:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ma&gt;=60:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if co&gt;=60:<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print('pass입니다.')<br>else :<br>&nbsp; &nbsp; print('fail입니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:23:10 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322534346</guid>
      </item>
      <item>
         <title>유나림</title>
         <author>narimyoo</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322534958</link>
         <description><![CDATA[<div>ko = int(input('국어 점수 : '))&nbsp;</div><div>en = int(input('영어 점수 : '))</div><div>ma = int(input('수학 점수 : '))</div><div>co = int(input('컴퓨터 점수 : '))</div><div>ave = (ko+en+ma+co)/4</div><div>print('총점 : ',ko+en+ma+co,', 평균 : ',ave,sep='')</div><div><br></div><div>if ave &gt;= 80 and ko&gt;=60 and en&gt;=60 and ma&gt;=60 and co&gt;=60 :</div><div>&nbsp; &nbsp; print('PASS')</div><div>else :</div><div>&nbsp; &nbsp; print('FAIL')</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1823163396/90b377d845e9d11131af58f77acd25b8/2_copy.jpg" />
         <pubDate>2022-10-02 11:23:55 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322534958</guid>
      </item>
      <item>
         <title>남궁윤 (2번문제 )</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322535619</link>
         <description><![CDATA[<div>k = int(input("국어 시험 점수를 입력해주세요 : "))</div><div>m = int(input("수학 시험 점수를 입력해주세요 : "))</div><div>e = int(input("영어 시험 점수를 입력해주세요 : "))</div><div><br></div><div>ar = (k + m + e)/3</div><div><br></div><div>if ar &gt;= 90 :</div><div>&nbsp; &nbsp; print("A 학점 입니다. ")</div><div><br></div><div>elif ar &gt;= 80 :</div><div>&nbsp; &nbsp; print("B 학점 입니다. ")</div><div><br></div><div>elif ar &gt;= 70 :</div><div>&nbsp; &nbsp; print("C 학점 입니다. ")</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print("계절학기 준비하세요 ")</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:25:19 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322535619</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322538452</link>
         <description><![CDATA[<div>a=int(input('태어난 년도를 적어주세요;'))<br><br>b=2022<br><br>c=b-(a+1)<br>print(c)<br><br>if 20&lt;= c &lt;=26 :<br>&nbsp; &nbsp; print('대학생입니다.')<br><br>elif 17&lt;= c &lt;= 10:<br>&nbsp; &nbsp; print('고등학생입니다.')<br><br>elif 14&lt;= c &lt;=17 :<br>&nbsp; &nbsp; print('중학생입니다.')<br><br>elif 8&lt;= c &lt;= 14:<br>&nbsp; &nbsp; print('초등학생입니다.')<br><br>else :<br>&nbsp; &nbsp; print('학생이 아닙니다.')<br>&nbsp; &nbsp;&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:31:53 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322538452</guid>
      </item>
      <item>
         <title>남궁윤 (3번문제)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322540663</link>
         <description><![CDATA[<div>age = int(input(" 영화 공조를 보려면 나이를 입력해주세요.&nbsp; "))</div><div><br></div><div>if age &gt;= 15:</div><div>&nbsp; &nbsp; print("영화관람이 가능합니다.")</div><div><br></div><div>else:</div><div>&nbsp; &nbsp; &nbsp;print("15세 이하라서 관람이 불가능합니다.")</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:37:13 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322540663</guid>
      </item>
      <item>
         <title>남현숙</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322542956</link>
         <description><![CDATA[<div>a=int(input('구매금액을 입력하세요:'))<br><br>if a&lt;20000 :<br>&nbsp; &nbsp; print('구매금액이 부족합니다.')<br>elif 20000 &lt;= a &lt;=50000 :<br>&nbsp; &nbsp; print('배송비 2,500원이 추가됩니다.')<br><br>elif a&gt; 50000:<br>&nbsp; &nbsp; print('무료배송됩니다.')<br>print(f'최종 결제 금액은 {a} 입니다.')<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 11:42:31 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322542956</guid>
      </item>
      <item>
         <title>남궁윤 (4번문제)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322560085</link>
         <description><![CDATA[<div>yy = int(input('년도를 입력해주세요 : '))</div><div><br></div><div>if&nbsp; yy%4 == 0&nbsp; and&nbsp; yy%100 != 0&nbsp; &nbsp; or yy%400 == 0 :</div><div>&nbsp; &nbsp; &nbsp;print('입력하신 {}년은 윤년 입니다.'.format(yy))</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print('입력하신 {}년은 윤년이 아닙니다.'.format(yy))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 12:16:22 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322560085</guid>
      </item>
      <item>
         <title>김정은 과제1</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322571510</link>
         <description><![CDATA[<div>name=input('이름을 입력하세요:')<br>id_no=input('6자리를 입력하세요:')<br><br>year=id_no[0:2]<br>month=id_no[2:4]<br>day=id_no[4:6]<br><br>print('{}님의 생년월일은 {}년{}월{}d일입니다'.format(name,year,month,day))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 12:40:17 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322571510</guid>
      </item>
      <item>
         <title>김정은 과제2</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322588740</link>
         <description><![CDATA[<div>pay=0<br>extra_pay=11000<br>name=input('이름을 입력해주세요:')<br>ep=int(input('근무기간을 입력해주세요'))<br>time=int(input('초과근무시간을 입력해주세요'))<br><br>if&nbsp; ep &lt;=3:<br>&nbsp; &nbsp; overtime_pay=int(time*extra_pay*1.1)<br>elif ep&lt;=7:<br>&nbsp; &nbsp; &nbsp;overtime_pay=int(time*extra_pay*1.2)<br>else:<br>&nbsp; &nbsp; overtime_pay=int(time*extra_pay*1.3)<br><br>print('{}님의 초과근무수당은 {}입니다.'.format(name,overtime_pay))<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 13:09:51 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322588740</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author>bulbul923</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322650681</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1782455088/d3f8ec6987bd6015a446d32e4abd1611/image.png" />
         <pubDate>2022-10-02 14:46:38 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322650681</guid>
      </item>
      <item>
         <title>윤선아</title>
         <author>bulbul923</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322678432</link>
         <description><![CDATA[<div>ko = int(input('국어점수:'))</div><div>en = int(input('영어점수:'))</div><div>ma = int(input('수학점수:'))</div><div>co = int(input('컴퓨터점수:'))</div><div>total=ko+en+ma+co</div><div>ave=total/4</div><div>print('총점:{} 평균:{}'.format(total,ave))</div><div><br></div><div>if ave&gt;=80 and ko&gt;=60 and en&gt;=60 and ma&gt;=60 and co&gt;60:</div><div>&nbsp; &nbsp; print('PASS')</div><div>else :&nbsp;</div><div>&nbsp; &nbsp; print('FAIL')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 15:23:57 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322678432</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322718765</link>
         <description><![CDATA[<div>w = int(input('수박 무게는?(단위 kg) :'))</div><div>if w &gt; 10 :</div><div>&nbsp; print('1등급')</div><div>elif w &gt; 7:</div><div>&nbsp; print('2등급')</div><div>elif w &gt; 4:</div><div>&nbsp; print('3등급')</div><div>else :&nbsp;</div><div>&nbsp; print('4등급')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 16:19:40 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322718765</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322724238</link>
         <description><![CDATA[<div>i = int(input('입력값 : '))</div><div>if i // 1000 &gt;= 1 :</div><div>&nbsp; &nbsp;print('출력값 : ',i//1000,'K')</div><div>else :</div><div>&nbsp; &nbsp;print('출력값 : ',i)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 16:26:37 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322724238</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322729775</link>
         <description><![CDATA[<div>total = int(input('구매금액은? '))</div><div>if total &lt; 20000 :</div><div>&nbsp; print('주문금액이 부족합니다.')</div><div>&nbsp; print('{}원 이상 추가주문 부탁드립니다.'.format(20000-total))</div><div><br></div><div>elif total &lt; 50000 :</div><div>&nbsp; print('배송비 2500원이 추가됩니다.')</div><div>&nbsp; print('최종결재 금액은 {}원 입니다.'.format(total + 2500))</div><div>else :&nbsp;</div><div>&nbsp; print('무료배송 됩니다.')</div><div>&nbsp; print('최종결재 금액은 {}원 입니다.'.format(total))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 16:34:19 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322729775</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322736278</link>
         <description><![CDATA[<div>bd = int(input('출생년도 :'))</div><div>age = 2022 - bd +1</div><div>print('만 나이 :',age)</div><div>if 8 &lt;= age and age &lt; 14 :</div><div>&nbsp; print('초등학생')</div><div>elif 14 &lt;= age and age &lt; 17:</div><div>&nbsp; print('중학생')</div><div>elif 17 &lt;= age and age &lt; 20 :</div><div>&nbsp; print('고등학생')</div><div>elif 20 &lt;= age and age &lt;= 26 :</div><div>&nbsp; print('대학생')</div><div>else :</div><div>&nbsp; print('학생이 아닙니다.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 16:43:44 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322736278</guid>
      </item>
      <item>
         <title>정주황</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322742272</link>
         <description><![CDATA[<div>k = int(input('국어 점수 : '))</div><div>e = int(input('영어 점수 : '))</div><div>m = int(input('수학 점수 : '))</div><div>c = int(input('컴퓨터 점수 : '))</div><div>t = k + e + m + c</div><div>a = t / 4</div><div>print('총점은',t,', ','평균은', a)</div><div>if a &gt;= 80 and k &gt;= 60 and e &gt;= 60 and m&gt;= 60 and c &gt;=60 :</div><div>&nbsp; print('Pass')</div><div>else :</div><div>&nbsp; print('Fail')</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 16:52:09 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322742272</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322987668</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/70b1c79298d9f462c46e7ea1b2956a7a/1.png" />
         <pubDate>2022-10-03 00:22:57 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322987668</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322991612</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/ae777f42608accc78528e52d0452d81f/2.png" />
         <pubDate>2022-10-03 00:30:42 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322991612</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322993727</link>
         <description><![CDATA[<div>age = int(input("나이를 입력하세요:"))</div><div>if age &lt; 8 :</div><div>&nbsp; &nbsp; print("8세 이상이어야 입장 가능합니다")</div><div>else:</div><div>&nbsp; &nbsp; height = int(input("키를 입력하세요:"))</div><div>&nbsp; &nbsp; if height &gt;= 120 :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장가능합니다")</div><div>&nbsp; &nbsp; else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("키가 120cm 이상이어야 입장가능합니다")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 00:35:21 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322993727</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322995442</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/76fc7ab1adfc724431bc2d51466b331f/3.png" />
         <pubDate>2022-10-03 00:38:54 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322995442</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322996195</link>
         <description><![CDATA[<div>kor,mat,eng = int(input("국어")),int(input("수학")),int(input("영어"))</div><div>avg = (kor+mat+eng)/3</div><div>if avg &gt;= 90 :</div><div>&nbsp; &nbsp; print("A학점 입니다")</div><div>elif avg &gt;=80 :</div><div>&nbsp; &nbsp; print("B학점 입니다")</div><div>elif avg &gt;=70 :</div><div>&nbsp; &nbsp; print("C학점 입니다")</div><div>else :</div><div>&nbsp; &nbsp; print("계절학기준비하세요")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 00:40:30 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322996195</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322999130</link>
         <description><![CDATA[<div>age = int(input("만 나이를 입력하세요 : "))</div><div>if age &gt;= 15 :</div><div>&nbsp; &nbsp; print("관람이 가능합니다")</div><div>else:</div><div>&nbsp; &nbsp; yn = input("부모 동반 여부(예/아니오) :")</div><div>&nbsp; &nbsp; if yn == "예":</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("부모님과 동반하여 관람 가능합니다.")</div><div>&nbsp; &nbsp; elif yn == "아니오":</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("관람이 불가능합니다")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 00:46:18 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322999130</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322999231</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/61c97f505cd55816502cde5674ae21d9/4.png" />
         <pubDate>2022-10-03 00:46:27 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2322999231</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323009194</link>
         <description><![CDATA[<div>year = int(input("년도를 입력해주세요"))</div><div>if (year % 4 == 0):&nbsp;</div><div>&nbsp; &nbsp; if&nbsp; (year % 100 != 0) or (year % 400 == 0):</div><div>&nbsp; &nbsp; &nbsp; &nbsp; result = "윤년"</div><div>&nbsp; &nbsp; else :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; result ="평년"</div><div>else :</div><div>&nbsp; &nbsp; result = "평년"</div><div>print("입력하신 {}년은 {}입니다".format(year,result))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 01:03:43 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323009194</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323027054</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/1ab43fe653542827cc20fd2e5e148352/5.png" />
         <pubDate>2022-10-03 01:31:40 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323027054</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323031759</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/1fd5f3a9b2c406a3de0ab0407bb540b3/6.png" />
         <pubDate>2022-10-03 01:39:10 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323031759</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323036866</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/462af637b91a876b56ba041f53d17c98/7.png" />
         <pubDate>2022-10-03 01:46:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323036866</guid>
      </item>
      <item>
         <title>(전현경) 이런방법도 있다니 신기해요^^</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323039989</link>
         <description><![CDATA[<div>birth_year = int(input("태어난 년도를 입력해주세요 : "))</div><div>year12 = birth_year % 12</div><div>zodiac0,zodiac1,zodiac2,zodiac3,zodiac4,zodiac5 = "원숭이","닭","개","돼지","쥐","소"</div><div>zodiac6,zodiac7,zodiac8,zodiac9,zodiac10,zodiac11 = "호랑이","토끼","용","뱀","말","양"</div><div># 다른방법이 있나 찾아보다가 찾았습니다</div><div># 동적변수명 사용 : 함수 local()과 대괄호([])안에 텍스트를 넣어 사용</div><div>print("{}년생은 {}띠입니다".format(birth_year, locals()['zodiac'+str(year12)]))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 01:51:15 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323039989</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323042782</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/62ff7e54a8b4ab7fe5b3ffdfbc254876/8.png" />
         <pubDate>2022-10-03 01:55:02 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323042782</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323046718</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/30be98e5e5b28bd8cee771672c887780/9.png" />
         <pubDate>2022-10-03 02:00:58 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323046718</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323047910</link>
         <description><![CDATA[<div>num = int(input("입력값"))</div><div>num -= 20</div><div>if num &lt; 0 :</div><div>&nbsp; &nbsp;num_result = 0</div><div>elif num &gt; 255:</div><div>&nbsp; &nbsp;num_result = 255</div><div>else:</div><div>&nbsp; &nbsp;num_result = num</div><div><br></div><div>print("출력값 :",num_result)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 02:02:31 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323047910</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323051100</link>
         <description><![CDATA[<div>wm_weight = int(input("수박의 무게를 입력해주세요 : "))</div><div>if wm_weight &gt; 10 :</div><div>&nbsp; &nbsp; grade = "1등급"</div><div>elif wm_weight &gt; 7 :</div><div>&nbsp; &nbsp; grade = "2등급"&nbsp;</div><div>elif wm_weight &gt; 4 :</div><div>&nbsp; &nbsp; grade = "3등급"&nbsp;</div><div>else :</div><div>&nbsp; &nbsp; grade = "4등급"</div><div>print("수박의 등급은 {}입니다".format(grade))&nbsp; &nbsp; &nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 02:07:25 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323051100</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323055613</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/761bce807c365d23e387106c180483b8/10.png" />
         <pubDate>2022-10-03 02:14:33 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323055613</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323063598</link>
         <description><![CDATA[<div>weight = int(input("입력값 : "))</div><div>if weight &gt; 1000 :</div><div>&nbsp; &nbsp; weight //= 1000</div><div>&nbsp; &nbsp; result = str(weight)+"K"</div><div>else :</div><div>&nbsp; &nbsp; result = str(weight)</div><div>print("출력값:",result)</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 02:26:06 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323063598</guid>
      </item>
      <item>
         <title>김현정</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323064326</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1831751025/54545b3e0223d71b73f7c575550d4b7d/11.png" />
         <pubDate>2022-10-03 02:27:18 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323064326</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323073306</link>
         <description><![CDATA[<div>amount = int(input("구매금액은?"))</div><div>if amount &lt; 20000 :</div><div>&nbsp; &nbsp; result = "주문 금액이 부족합니다"</div><div>elif 20000 &lt;= amount &lt; 50000:</div><div>&nbsp; &nbsp; result = "배송비 2500원이 추가됩니다"</div><div>&nbsp; &nbsp; amount += 2500&nbsp;</div><div>else :</div><div>&nbsp; &nbsp; result = "무료배송됩니다"</div><div>print(result)</div><div>if amount &gt;= 20000 :</div><div>&nbsp; &nbsp; print("최종 결제금액은 {} 원입니다.".format(amount))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 02:40:38 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323073306</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323083026</link>
         <description><![CDATA[<div>year = int(input("태어난 년도를 입력해주세요 : "))</div><div>cur_year = 2022</div><div>age = cur_year - year + 1</div><div>result = ""</div><div>if 20 &lt;= age &lt;= 26 : result = "대학생"</div><div>elif 17 &lt;= age &lt; 20 : result = "고등학생"</div><div>elif 14 &lt;= age &lt; 17 : result = "중학생"</div><div>elif 8 &lt;= age &lt; 14 : result = "초등학생"</div><div><br></div><div>print("학생이 아닙니다" if result == "" else result+"입니다")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 02:54:49 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323083026</guid>
      </item>
      <item>
         <title>(전현경)</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323089073</link>
         <description><![CDATA[<div>kor,eng,mat,com&nbsp; = int(input("국어 점수 : ")),int(input("영어 점수 : ")),int(input("수학 점수 : ")),int(input("컴퓨터 점수 : "))</div><div>tot = kor+eng+mat+com</div><div>avg = tot / 4</div><div>if avg &gt;= 80 and kor&gt;=60 and eng &gt;=60 and mat&gt;=60 and com&gt;=60:</div><div>&nbsp; &nbsp; result ="PASS"</div><div>else:</div><div>&nbsp; &nbsp; result ="FAIL"</div><div>print("총점:{}, 평균:{} \n {}".format(tot,avg,result))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 03:02:53 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323089073</guid>
      </item>
      <item>
         <title>황수미 </title>
         <author>tnalxowl</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323105941</link>
         <description><![CDATA[<div>age=int(input("나이를 입력하세요"))</div><div>if age &lt;= 8 :</div><div>&nbsp; &nbsp; print("8세 이상이어야 입장 가능합니다")</div><div>else:</div><div>&nbsp; &nbsp; he=int(input("키를 입력하세요"))</div><div>&nbsp; &nbsp; if he &gt;=120 :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장가능합니다")</div><div>&nbsp; &nbsp; else :</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("120이상이여야 입장가능합니다")</div><div>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 03:27:20 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323105941</guid>
      </item>
      <item>
         <title>황수미</title>
         <author>tnalxowl</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323111707</link>
         <description><![CDATA[<div>a=int(input("국어 성적을 입력해주세요"))</div><div>b=int(input("수학 성적을 입력해주세요"))</div><div>c=int(input("영어 성적을 입력해주세요"))</div><div>to=(a+b+c)/3</div><div>if to &gt;=90 :</div><div>&nbsp; &nbsp; print("A학점입니다")</div><div>elif to &gt;=80 :</div><div>&nbsp; &nbsp; print("b학점입니다")</div><div>elif to &gt;=70 :</div><div>&nbsp; &nbsp; print("c학점입니다")&nbsp; &nbsp;&nbsp;</div><div>else:</div><div>&nbsp; &nbsp; print("계절학기 준비하셈")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 03:34:58 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323111707</guid>
      </item>
      <item>
         <title>황수미</title>
         <author>tnalxowl</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323114357</link>
         <description><![CDATA[<div>age=int(input("몇살이세요?"))</div><div>if age &lt; 15 :</div><div>&nbsp; &nbsp; print("관람불가세요 나이먹고 오셈~")</div><div>else :</div><div>&nbsp; &nbsp; print("잼나게 보세요 ^-^/")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 03:39:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323114357</guid>
      </item>
      <item>
         <title>박선애</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323200590</link>
         <description><![CDATA[<div>name=input("이름을 입력하세요:")&nbsp;<br>id_no=input("주민번호 6자리를 입력하세요:")<br>year=id_no[0:2]<br>month=id_no[2:4]<br>day=id_no[4:6]<br>print("{}님의 생년월일은 {}년 {}월 {}일입니다".format(name,year,month,day))<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 05:50:16 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323200590</guid>
      </item>
      <item>
         <title>박선애</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323216269</link>
         <description><![CDATA[<div>pay=0<br>extra_pay=11000<br>name=input("이름을 입력해주세요:")<br>ep=int(input("근무시간을 입력해주세요:"))<br>time=int(input("초과근무시간을 입력해주세요:"))<br>if ep&lt;=3:<br>&nbsp; &nbsp; overtime_pay=extra_pay*time*1.1<br>elif ep&lt;=7:<br>&nbsp; &nbsp; overtime_pay=extra_pay*time*1.2<br>else:<br>&nbsp; &nbsp; overtime_pay =extra_pay*time*1.3<br>print("{}님의 초과근무수당은 {}원입니다".format(name,time,pay))</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 06:13:03 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323216269</guid>
      </item>
      <item>
         <title>윤남순</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323338722</link>
         <description><![CDATA[<div>age = int(input("나이를 입력하세요"))</div><div>if age &lt;= 8:</div><div>&nbsp; &nbsp; print("8세이상이어야 가능합니다")</div><div>else:</div><div>&nbsp; &nbsp; he = int(input("키를 입력하세요"))</div><div>&nbsp; &nbsp; if he &gt;= 120:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("입장가능합니다")</div><div>&nbsp; &nbsp; else:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; print("120이상이어야 입장가능합니다")</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 08:17:05 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323338722</guid>
      </item>
      <item>
         <title>윤남순</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323426055</link>
         <description><![CDATA[<div>k = int(input("국어점수"))</div><div>m = int(input("수학점수"))</div><div>e = int(input("영어점수"))</div><div>a = (k+m+e)/3</div><div><br></div><div>if a&gt;= 90:</div><div>&nbsp; &nbsp; print("A학점입니다.")</div><div>elif a&gt;=80:</div><div>&nbsp; &nbsp; print("B학점입니다.")</div><div>elif a&gt;=70:</div><div>&nbsp; &nbsp; print("c학점입니다.")</div><div>else :</div><div>&nbsp; &nbsp; print("계절학기 준비하세요")</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 09:29:01 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323426055</guid>
      </item>
      <item>
         <title>전송이</title>
         <author></author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323675241</link>
         <description><![CDATA[<div>k = int(input("국어 점수: "))</div><div>e = int(input("영어 점수: "))</div><div>m = int(input("수학 점수: "))</div><div>c = int(input("컴퓨터 점수: "))</div><div>t = k+e+m+c</div><div>a = t/4</div><div><br></div><div>print("총점:",t,"평균:",a)</div><div><br></div><div>if a &gt;= 80 and k &gt;= 60 and e &gt;= 60 and m &gt;= 60 and c &gt;= 60 :</div><div>&nbsp; &nbsp; print("PASS")</div><div><br></div><div>else :</div><div>&nbsp; &nbsp; print("FAIL")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 12:48:02 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2323675241</guid>
      </item>
      <item>
         <title>최은미</title>
         <author>cemistyle</author>
         <link>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2334409017</link>
         <description><![CDATA[<div>ko =int(input("국어점수입력:"))</div><div>ma = int(input("수학점수입력"))</div><div>en = int(input("영어점수입력"))</div><div><br></div><div>ave = (ko+ma+en) / 3</div><div><br></div><div>if ave &gt;= 90 :</div><div>&nbsp; &nbsp; print("A학점입니다.")</div><div>elif ave &gt;= 80 :</div><div>&nbsp; &nbsp; print("B학점입니다")</div><div>elif ave &gt;= 70 :</div><div>&nbsp; &nbsp; print("C학점입니다")</div><div>else :</div><div>&nbsp; &nbsp; print("계절학기를 준비하세요")</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-11 01:26:29 UTC</pubDate>
         <guid>https://padlet.com/coffee79429/fmg1n5to7qjt5ie7/wish/2334409017</guid>
      </item>
   </channel>
</rss>
