<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>아이디어 나눔-경상고 by online2 dg</title>
      <link>https://padlet.com/dgonline1/ra24uka6eftxq67o</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2025-08-28 00:36:49 UTC</pubDate>
      <lastBuildDate>2025-11-21 01:55:37 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557733597</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000;
age=int(input("나이를 입력하세요: "));

if (age &lt; 20):
  price *= 0.9;
print(f"입장료는 {price}원입니다.");</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:38:56 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557733597</guid>
      </item>
      <item>
         <title>정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557735330</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))

if age &lt; 20:
  price = int(price *0.9)
print("입장료는",price,"원입니다.")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:40:01 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557735330</guid>
      </item>
      <item>
         <title>최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557736350</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))
if age &lt; 20:
  print("입장료는 %d원입니다." %(price * 0.9))
else:
  print("입장료는 %d원입니다." %price)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:40:41 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557736350</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557741163</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))
if age&lt;20:
  price=2700
print(price)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:41:35 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557741163</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557741965</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))
if age&lt;20:
  print('입장료는 %d원입니다.'%(3000*0.9))
else:
  print('입장료는 %d원입니다.'%3000)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:42:04 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557741965</guid>
      </item>
      <item>
         <title>김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557742424</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))

if age&lt;20 :
  print('입장료=',price*(90/100))
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:42:21 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557742424</guid>
      </item>
      <item>
         <title>윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557743467</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))
if age &lt; 20 :
  price=price*0.9
print('입장료는 %d 원 입니다'%price)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:43:00 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557743467</guid>
      </item>
      <item>
         <title>20315윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557748900</link>
         <description><![CDATA[<pre><code class="language-notebook-python">price=3000
age=int(input("나이를 입력하세요:"))
if age&lt;20:
  print(price*0.9,'원 입니다.')
else:
  print(price,'원 입니다.')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:46:24 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557748900</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756406</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input())
if a%2==0:
  print('even','봉찬 win!')
elif a%2==1 :
  print('odd','용준 win!')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:51:23 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756406</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756602</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a = int(input("자연수를 입력하세요 : "))
if (a % 2 == 0):
  print("even")
else:
  print("odd")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:51:32 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756602</guid>
      </item>
      <item>
         <title>정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756649</link>
         <description><![CDATA[<pre><code class="language-notebook-python">num = int(input("정수를 입력하시오."))

if num % 2 == 0:
  print('even')
else:
  print("odd")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:51:34 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756649</guid>
      </item>
      <item>
         <title>정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756825</link>
         <description><![CDATA[<pre><code class="language-notebook-python">n=int(input())
if n%2 == 0:
  print('even')
else:
  print('odd')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:51:41 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557756825</guid>
      </item>
      <item>
         <title>윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757069</link>
         <description><![CDATA[<pre><code class="language-notebook-python">n=int(input())
if n%2==1 :
  print('odd')
else:
  print('even')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:51:52 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757069</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757707</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input("자연수를 입력하라"))
if a%2==0:
  print('even')
else:
  print('odd')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:52:20 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757707</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757971</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('몇 개의 돌을 쥐었나요?'))
if a%2==0:
  print('even')
if a%2==1:
  print('odd')
#방법 2 : else로 출력</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:52:30 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557757971</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557760693</link>
         <description><![CDATA[<pre><code class="language-notebook-python">n=int(input())
if n&gt;0 and n&lt;6:
  if n%2==1:
    print('odd')
  else:
    print('even')
else:print('?')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:54:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557760693</guid>
      </item>
      <item>
         <title>정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771370</link>
         <description><![CDATA[<pre><code class="language-notebook-python">grade = input("학년을 입력 하세요 (1,2,3):")

if grade == "1":
  print("교표 색상: 빨강")
elif grade == "2":
  print("교표 색상: 노랑")
elif grade == "3":
  print("교표 색상: 초록")
else:
  print("올바른 학년을 입력하세요 (1~3)")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 00:59:54 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771370</guid>
      </item>
      <item>
         <title>곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771946</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('당신의 학년은?'))
if a==1:
    print("교표의 색상 : 빨강")
elif a==2:
    print("교표의 색상 : 노랑")
elif a==3:
    print("교표의 색상 : 초록")
else:
    print("올바르지 않은 학년입니다. 다시 한번 확인해 주세요")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:00:14 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771946</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771954</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('학년 :'))
if a==1 :
  print('교표색: 빨강')
elif a==2 :
  print('교표색: 노랑')
elif a==3 :
  print('교표색: 초록')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:00:14 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557771954</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557772845</link>
         <description><![CDATA[<pre><code class="language-notebook-python">grade = int(input("당신의 학년을 입력해주세요. : "))
if (grade == 1):
  print("빨강")
elif (grade == 2):
  print("노랑")
elif (grade == 3):
  print("초록")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:00:52 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557772845</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557772925</link>
         <description><![CDATA[<pre><code class="language-notebook-python">grade=int(input())
if grade==1: print('빨강')
elif grade==2: print('노랑')
elif grade==3: print('초록')
else: print('?')

grade=int(input())
if grade==1: color='빨강'
elif grade==2: color='노랑'
elif grade==3: color='초록'
else: color='?'
print(color)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:00:55 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557772925</guid>
      </item>
      <item>
         <title>윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557773137</link>
         <description><![CDATA[<pre><code class="language-notebook-python">grade=int(input('학년을 입력하세요.'))
if grade==1:
  print('교표의 색상은 빨강')
elif grade==2:
  print('교표의 색상은 노랑')
elif grade==3:
  print('교표의 색상은 초록')
else:
  print('올바른 학년을 입력하십시오.')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:01:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557773137</guid>
      </item>
      <item>
         <title>20309 김준용 (2)</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557776948</link>
         <description><![CDATA[<pre><code class="language-notebook-python">grade = int(input("당신은 몇학년입니까?"));
if (grade == 1):
  c = "빨강"
elif (grade == 2):
  c = "노랑"
elif (grade == 3):
  c = "초록"
print(c)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:03:22 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557776948</guid>
      </item>
      <item>
         <title>윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557777041</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('1학년: 빨강, 2학년: 노랑, 3학년: 초록'))
if a==1:
  print('빨강')
elif a==2:
  print('노랑')
elif a==3:
  print('초록')
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:03:26 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557777041</guid>
      </item>
      <item>
         <title>곽현승2</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557778990</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('당신의 학년은? '))
if a==1:
    col='빨강'
elif a==2:
    col='노랑'
elif a==3:
    col='초록'
else:
    print("올바르지 않은 학년입니다. 다시 한번 확인해 주세요")

print('교표의 색 :',col)
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:04:43 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557778990</guid>
      </item>
      <item>
         <title>20515 윤준서</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557785566</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=int(input('학년: '))
if a==1:
    print("교표의 색상: 빨강")
elif a==2:
    print("교표의 색상: 노랑")
elif a==3:
    print("교표의 색상: 초록")
else:
    print("다시 입력해 주세요")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-28 01:08:52 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3557785566</guid>
      </item>
      <item>
         <title>ㅈㄷㄱ</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559552756</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))

avg = (kor + mat + eng) / 3
if avg &gt;= 90:
  grade = "A"
elif avg &gt;= 80:
  grade = "B"
elif avg &gt;= 70:
  grade = "C"
else:
  grade = "D"
print("당신의 등급은",grade, "입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:55:40 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559552756</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559555144</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))
a=(kor+mat+eng)/3
if a&gt;=90 :
  grade='A'
elif a&gt;=80 :
  grade='B'
elif a&gt;=70 :
  grade='C'
else :
  grade='D'
print("당신의 등급은",grade, "입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:56:09 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559555144</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559555775</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))
aver=(kor+mat+eng)/3

if aver&gt;=0 and aver&lt;=100:
  if aver&gt;=90: grade='A'
  elif aver&gt;=80: grade='B'
  elif aver&gt;=70: grade='C'
  else: grade='D'
else: grade='기상천외'

print(f"당신의 등급은 {grade}입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:56:16 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559555775</guid>
      </item>
      <item>
         <title>곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559557333</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))
k=(kor+mat+eng)/3
if k&gt;=90 and k&lt;=100:
  grade='A'
elif k&gt;=80 and k&lt;=100:
  grade='B'
elif k&gt;=70 and k&lt;=100:
  grade='C'
elif k&gt;0 and k&lt;70:
  grade='D'
else:
  print('성적을 다시 확인해 주세요')

if k&gt;0 and k&lt;=100:
  print("당신의 등급은",grade, "입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:56:32 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559557333</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559558652</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))
grade = ""

avg = ((kor + mat + eng)/3)
if (avg &gt;= 90):
  grade = "A"
elif (avg &gt;= 80):
  grade = "B"
elif (avg &gt;= 70):
  grade = "C"
else:
  grade = "D"
print("당신의 등급은",grade, "입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:56:46 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559558652</guid>
      </item>
      <item>
         <title>윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559563521</link>
         <description><![CDATA[<pre><code class="language-notebook-python">kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))

a=(kor+mat+eng)/3
if a&gt;=90:
  grade='A'
elif a&gt;=80:
  grade='B'
elif a&gt;=70:
  grade='C'
else:
  grade='D'

print("당신의 등급은",grade,"입니다")
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:57:38 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559563521</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559565212</link>
         <description><![CDATA[kor=int(input("국어점수를 입력하세요:"))
mat=int(input("수학점수를 입력하세요:"))
eng=int(input("영어점수를 입력하세요:"))
a=(kor+mat+eng)/3
if a &gt;= 90:
  grade='A'
elif a&gt;=80:
  grade='B'
elif a&gt;=70:
  grade='C'
else:
  grade='D'
print("당신의 등급은",grade, "입니다")]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 01:57:56 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559565212</guid>
      </item>
      <item>
         <title>윤상민 - 정준혁</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559603580</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:07:01 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559603580</guid>
      </item>
      <item>
         <title>윤성빈 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604032</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:07:10 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604032</guid>
      </item>
      <item>
         <title>정형준 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604371</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:07:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604371</guid>
      </item>
      <item>
         <title>정동권 최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604478</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:07:17 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604478</guid>
      </item>
      <item>
         <title>박규태-윤준서</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604516</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:07:18 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559604516</guid>
      </item>
      <item>
         <title>김준용, 황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559607176</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:08:08 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559607176</guid>
      </item>
      <item>
         <title>ㅈㄷㄱ</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648407</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email = input("이메일 주소를 입력하세요: ")

if '@' in email:
  print("올바른 이메일 주소입니다.")
else:
  print("툴린 이메일 주소입니다.")
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:19:51 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648407</guid>
      </item>
      <item>
         <title>윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648681</link>
         <description><![CDATA[<pre><code class="language-notebook-python">gmail=input('당신의 이메일 주소를 입력하십시오.')
if not gmail in '@':
  print('틀린 이메일 주소입니다.')
else:
  print('감사합니다.')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:19:57 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648681</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648824</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email=input('이메일 주소를 입력하세요:')
if '@' not in email:
  print('틀린 이메일 주소입니다')
else :
  print('비밀번호를 입력하세요:')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:01 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559648824</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559649533</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=input()
if '@'in a :
  print('옳은 주소입니다')
else:
    print('틀린 이메일 주소입니다')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:16 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559649533</guid>
      </item>
      <item>
         <title>20623제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559649863</link>
         <description><![CDATA[<pre><code class="language-notebook-python">a=input("이메일 주소: ")
if '@' not in a:
  print('틀린 이메일 주소임')
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:21 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559649863</guid>
      </item>
      <item>
         <title>곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559650535</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email = input("이메일 주소를 입력하세요: ")

if "@" and "." not in email:
    print("틀린 이메일 주소입니다")
else:
    print("올바른 이메일 주소입니다")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:30 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559650535</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559650600</link>
         <description><![CDATA[<pre><code class="language-notebook-python">emailAddress = input("당신의 이메일 주소를 입력해주세요 : ");
if "@" not in emailAddress:
  print("틀린 이메일 주소입니다.");</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:30 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559650600</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651127</link>
         <description><![CDATA[<pre><code class="language-notebook-python">if '@' in email and '.' in email:
  print('로봇인지 확인 : 다음 그림 중 자전거가 포함된 이미지를 고르시오')
else:
  print('틀린 이메일 주소입니다')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:42 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651127</guid>
      </item>
      <item>
         <title>정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651472</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email=input('이메일 주소: ')
if '@' not in email:
  print('틀린 이메일 주소입니다')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:48 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651472</guid>
      </item>
      <item>
         <title>최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651789</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email = input("이메일주소를입력하세여 ")
if ("@" in email) == False:
  print("틀린이메일주소입니다")0</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:20:53 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559651789</guid>
      </item>
      <item>
         <title>20221정준혁</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559692753</link>
         <description><![CDATA[<pre><code class="language-notebook-python">email=input()
if '@' not in email:
    print('틀린 이메일 주소입니다')</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-29 02:35:06 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3559692753</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581205952</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
tot = 0
for i in score:
  tot += i
print(f"평균값 : {tot / len(score)}")</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:11:47 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581205952</guid>
      </item>
      <item>
         <title>제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581206624</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
total=0
for i in range(len(score)):
  total+=score[i]
  avg=total/len(score)
print(avg)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:12:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581206624</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581207795</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]

total = 0
for s in score:
    total += s

average = total / len(score)
print("평균 성적:", average)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:12:39 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581207795</guid>
      </item>
      <item>
         <title>정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581207796</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
total=0
for i in score:
  total+=i
avg=total/len(score)
print(avg)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:12:39 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581207796</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581208113</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
total = 0
for s in score:
    total += s

avg = total / len(score)
print("평균:", avg)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:12:48 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581208113</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581208390</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
total=0
for i in range(len(score)):
  total=total+score[i]
aver=total/(i+1)
print(aver)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:12:55 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581208390</guid>
      </item>
      <item>
         <title>김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581210395</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
a=0
for i in score:
  a+=i
p=sum/len(score)
print(p)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:13:31 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581210395</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581212683</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
k=0
for i in score:
  k+=i
print(k/len(score))</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:14:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581212683</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581212847</link>
         <description><![CDATA[<pre><code class="language-notebook-python">score=[87, 75, 95, 88, 90, 70, 60, 75]
a=0
for i in range(len(score)):
  a= a+ score[i]
avg=a/len(score)
print(avg)
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-12 02:14:19 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3581212847</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593135511</link>
         <description><![CDATA[<p>toDoList</p><p>key : 요일(월요일, 화요일 등등)</p><p>value : 요일 별 할일 (리스트)</p><p><br/></p><p>ex) toDoList = {</p><p>"월요일" : ["운동하기", "영어 단어 외우기", "보고서 작성하기"],</p><p>"화요일" : ...</p><p>...}</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 02:55:17 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593135511</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593141745</link>
         <description><![CDATA[<p>게임 순위표 만들기</p><p>key:유저</p><p>value: 점수, 순위</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 02:58:01 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593141745</guid>
      </item>
      <item>
         <title>황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593144492</link>
         <description><![CDATA[<p>{고객:계좌번호}</p><p>{계좌번호:잔액}</p><p>{계좌번호:거래내역(시간,입/출금,금액)}</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 02:59:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593144492</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593150457</link>
         <description><![CDATA[<p>영어 단어장 만들기</p><p>key = 단어  </p><p>value = 뜻, 품사, 예문 </p><p><br/></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 03:02:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593150457</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593151068</link>
         <description><![CDATA[<p>주문 상태 추적</p><p>key: 주문번호</p><p>value: 상태(예: 준비중/배송중/완료)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 03:02:22 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593151068</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593151592</link>
         <description><![CDATA[<p>생일을 대신 기억해주는 프로그램</p><p>이름을 입력하면 저장되어있는 생일을 알려준다</p><p>key: 이름 value: 생일</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 03:02:37 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593151592</guid>
      </item>
      <item>
         <title>20221 정준혁</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593174696</link>
         <description><![CDATA[<p>음식 칼로리 계산기</p><p>key = 음식이름</p><p>value = 칼로리</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-19 03:14:17 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3593174696</guid>
      </item>
      <item>
         <title>예시: 2101 홍길동</title>
         <author>online25</author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3633340418</link>
         <description><![CDATA[<ul><li><p>활용할 자료 구조: 딕셔너리</p></li><li><p>프로그램 주제: 친구 전화번호 관리하기</p></li><li><p>프로그램 기능: 주소록 입력/수정/추가/삭제 </p></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-15 07:59:33 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3633340418</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634584491</link>
         <description><![CDATA[<p>활용할 자료 구조: 리스트</p><p>프로그램 주제: 오늘 할 일 관리 프로그램</p><p>프로그램 기능: 할 일 추가 / 완료 처리 / 삭제 / 전체 목록 보기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-15 23:56:46 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634584491</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634594876</link>
         <description><![CDATA[<p>활용할 자료 구조: 입출력, 딕셔너리, 조건문, 함수</p><p>프로그램 주제: 소득에 따른 복지 대상자를 판별하는 프로그램</p><p>프로그램 기능: 사람의 정보를 입력/ 저장/ 복지 대상의 여부를 판단/ 복지 대상자일 경우 정보와 어떤 복지의 대상인지를 출력</p><p><br/></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:05:18 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634594876</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634597780</link>
         <description><![CDATA[<p>도서 대출 관리 프로그램</p><p>key : 책 제목</p><p>value : 대출, 반납 상태</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:07:23 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634597780</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634598306</link>
         <description><![CDATA[<p>활용할 자료 구조: 딕셔너리</p><p>프로그램 주제: 주차한 자리 찾기</p><p>프로그램 기능: 차량의 번호를 입력하면 어디 주차했는지 알려주는 프로그램(주차된 자리는 자동 입력되었다 가정)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:07:46 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634598306</guid>
      </item>
      <item>
         <title>20219 정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634604403</link>
         <description><![CDATA[<p>활용할 자료 구조: 딕셔너리</p><p>프로그램 주제: 가상 주식 투자 게임</p><p>프로그램 기능: 랜덤으로 주가 변동/매수 매도/ 수익률 계산</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:11:59 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634604403</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634606109</link>
         <description><![CDATA[<p>활용할 자료 구조 : 리스트, 튜플</p><p>프로그램 주제 : 문장 분석기</p><p>프로그램 기능 : 어떤 문장을 입력하면 총 글자 수, 공백 수, 공백 제외 글자 수, 가장 긴 단어를 자동으로 분석해서 보여주는 프로그램</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:13:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634606109</guid>
      </item>
      <item>
         <title>20507 박규태</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634608500</link>
         <description><![CDATA[<p>활용한 자료 구조: 딕셔너리</p><p><br/></p><p>프로그램 주제: 책 대여 시스템</p><p><br/></p><p>프로그램 기능: 책 목록 전체 알려주고 책 대여 및 반납 기능을 넣고 대여 상태를 체크한 다음 없는 책인 경우 예외 처리를 한다.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:14:33 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634608500</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634609162</link>
         <description><![CDATA[<p>활용할 자료 구조 : 딕셔너리</p><p>프로그램 주제 : 재활용품 관리 프로그램</p><p>프로그램 기능 : 쓰레기 등록, 수거량 입력, 현황 입력, 전체 현황 출력</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:14:57 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634609162</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634613649</link>
         <description><![CDATA[<ul><li><p>활용할 자료 구조: 리스트, 딕셔너리</p></li><li><p>프로그램 주제: 단어 빈도수 세기</p></li><li><p>프로그램 기능:</p><p>문장(대문자, 특수문자X)을 입력받아 단어를 공백 기준으로 구분</p><p>단어 등장 횟수를 계산</p><p>각 단어와 그 등장 횟수를 출력</p></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:17:41 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634613649</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634639516</link>
         <description><![CDATA[<p>활용할 자료 구조 : 딕셔너리, 리스트</p><p>프로그램 주제 : 디지털 탄소발자국 계산기</p><p>프로그램 기능 : 전자기기 사용 시간 입력/전력 계산/탄소 배출량 환산/기준치 초과시 조언 출력</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:30:39 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634639516</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634660007</link>
         <description><![CDATA[<p>활용할 자료 구조: 리스트</p><p>프로그램 주제: 수행 일정 정리하기</p><p>프로그램 기능: 수행 평가 일정을 추가하고 오늘 날짜를 입력해서 과목 별  수행 평가까지 남은 날짜를 계산, 급한 순서대로 정리(수행 날짜 한 달 안으로 제한)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 00:40:10 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634660007</guid>
      </item>
      <item>
         <title>20515 윤준서</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634698658</link>
         <description><![CDATA[<p>활용할 자료 구조: 딕셔너리</p><p>프로그램 주제: 냉장고 남은 재료 확인하기</p><p>프로그램 기능:  식재료를 사용하면, 현재 냉장고에 남아있는 식재료를 알려주는 프로그램</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 01:00:37 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634698658</guid>
      </item>
      <item>
         <title>20221정준혁</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634711676</link>
         <description><![CDATA[<p>활용할 자료구조: 리스트, 딕셔너리</p><p>프로그램 주제: 지출관리 프로그램</p><p>프로그램 기능: 지출 목표 입력 / 지출 항목 다중 입력 / 입력 데이터 검증 / 지출 내역 저장 / 총 지출 계산 / 목표 초과 여부 판단 / 결과 출력</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-16 01:07:20 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3634711676</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659627014</link>
         <description><![CDATA[<p>게임 진행 데이터 저장하기, 불러오기</p><p>=&gt; </p><p>진행 상황, 플레이어 데이터, 업적 등에 대한 저장 및 불러오기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:46:13 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659627014</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659630034</link>
         <description><![CDATA[<p>개인 성적 데이터 저장, 총 등급 산출하기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:47:37 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659630034</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659630520</link>
         <description><![CDATA[<p>배달 어플 음식점에 남긴 리뷰 글과 점수를 불러와 어플 사용자의 평균 별점을 산출하고 취향을 파악하기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:47:54 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659630520</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659631677</link>
         <description><![CDATA[<p>게임 캐릭터</p><p>위치</p><p>체력</p><p>진행도</p><p>아이템 상태</p><p>등 상태 저장 후 불러와 편집</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:48:25 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659631677</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659633350</link>
         <description><![CDATA[<p>게임의 플레이 시간, 업적, 죽은 횟수등을 저장 했다 게임을 클리어 했을때 보여주기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:49:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659633350</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659635073</link>
         <description><![CDATA[<p>각 재활용품에 따른 쓰레기 배출량 저장하기, 각 지역 별 쓰레기 배출 데이터 불러오기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:50:03 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659635073</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659639993</link>
         <description><![CDATA[<p>음악 플레이리스트 저장 / 불러오기</p><p>좋아하는 음악 제목과 가수를 파일로 저장</p><p>프로그램 실행 시 파일을 읽어서 자동으로 목록 표시</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-10-31 02:51:48 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3659639993</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668814645</link>
         <description><![CDATA[<p>재활용품 쓰레기를 등록했을 때 재활용품 쓰레기 파일 안에 없으면 그에 따른 새로움 파일을 만들면 좋을 것 같다</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:05:21 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668814645</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668818058</link>
         <description><![CDATA[<p>입력했던 글/출력한 결과 저장해 놨다가 검색</p><p>-&gt;파일 없으면 새 파일 만들기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:08:07 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668818058</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668818382</link>
         <description><![CDATA[<p>문자 전송 실패(네트워크 끊김, 잘못된 번호 등) 시 자동 재시도</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:08:20 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668818382</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668819872</link>
         <description><![CDATA[<p>복지 대상자의 정보가 잘못 입력되어 프로그램 실행에 오류가 발생 했을 때 예외 처리를 통해 코드가 계속 실행될 수 있도록 한다.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:09:26 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668819872</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668822225</link>
         <description><![CDATA[<p>사진 정리 프로그램</p><p>폴더가 없거나 접근 불가할 때 예외처리로 폴더 자동 생성</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:11:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668822225</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668824690</link>
         <description><![CDATA[<p>온라인 쇼핑몰에서 고객별로 주문 내역(날짜, 상품명, 가격, 수량)을 저장하고 검색. 그 고객의 파일이 없으면 새로운 파일을 생성?</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:12:59 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668824690</guid>
      </item>
      <item>
         <title>2101 홍길동</title>
         <author>online25</author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668889735</link>
         <description><![CDATA[<p>객체명:</p><p>속성: </p><p>동작:</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:46:38 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668889735</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668892008</link>
         <description><![CDATA[<p>객체명 : 스마트폰</p><p>속성 : 제조사, 화면 크기, 배터리 용량, 색상, 저장 용량</p><p>동작 : 전화를 건다, 사진을 찍는다, 음악을 재생한다, 앱을 실행한다</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:47:59 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668892008</guid>
      </item>
      <item>
         <title>20219 정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668892092</link>
         <description><![CDATA[<p>객체명: 고양이</p><p>속성: 이름,나이,품종,털색</p><p>동작: 먹는다, 울기, 잠자기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:48:03 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668892092</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668894200</link>
         <description><![CDATA[<p>출석 관리 시스템</p><p>객체: 학생 / 속성: 이름, 학번 / 동작: 출석체크</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:49:16 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668894200</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668894370</link>
         <description><![CDATA[<p>객체명: 양파</p><p>속성: 품종, 크기, 맵기</p><p>동작: 잘린다, 볶인다, 갈린다</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:49:23 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668894370</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668895105</link>
         <description><![CDATA[<p>객체명: 강아지</p><p>속성: 품종, 성별, 이름, 몸 크기</p><p>동작: 짖기, 자기, 사료 먹기, 구르기</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:49:48 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668895105</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668898003</link>
         <description><![CDATA[<p>객체:책</p><p>속성:제목, 작가, 출판사</p><p>동작:페이지 넘기기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:51:26 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668898003</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668898471</link>
         <description><![CDATA[<p>객체:버스</p><p>속성:번호, 색상, 노선,제조사,요금</p><p>동작:승객 태우기, 주행하기, 승객 내리게 하기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:51:40 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668898471</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668899870</link>
         <description><![CDATA[<p>객체 필통</p><p>속성 수납 공간, 제조사, 디자인</p><p>동작: 열리기,닫히기,물건 수납</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:52:28 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668899870</guid>
      </item>
      <item>
         <title>20507 박규태</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668902090</link>
         <description><![CDATA[<p>객체명: 선풍기</p><p>속성:날개,선풍기 엔진</p><p>동작:날개를 돌리기,선풍기 회전 하기</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:53:42 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668902090</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668905453</link>
         <description><![CDATA[<p>객체명 : 자동차</p><p>속성 : 색깔, 브랜드 등</p><p>동작 : 주행, 브레이크</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-06 00:55:33 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3668905453</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682172070</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Polarbear():
  name = "볼리베어"
  def attack(self, power):
    self.power = power
    print(f"{self.name}가 {self.power}의 힘으로 적을 공격한다!")
  def roar(self, volume):
    self.volume = volume
    print(f"{self.name}가 {self.volume}의 크기로 울부짖는다!")


volibear = Polarbear()
volibear.attack(95)
volibear.roar(5000)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:14:20 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682172070</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682176957</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Book:
  title='책의 제목'
  page=1

  def now(self,page):
    print(f'{self.title}:{self.page}쪽')

  def next(self,title,page):
    self.page+=1
    print(f'{self.title}:{self.page}쪽')

book1=Book()
book1.title='책1'
book1.now(book1.page)
book1.next(book1.title,book1.page)
book1.next(book1.title,book1.page)
book1.next(book1.title,book1.page)

book2=Book()
book2.title='책2'
book2.now(book2.page)
book2.next(book2.title,book2.page)
book2.next(book2.title,book2.page)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:16:54 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682176957</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682177496</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads-usc1.storage.googleapis.com/4740613758/6edc08aa68a6f79bb602758af8716950/______2025_11_14_111515.png" />
         <pubDate>2025-11-14 02:17:13 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682177496</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682178146</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Cat:
    def meow(self):
        print(f"{self.name} : 야옹")

    def info(self):
        print(f"이름: {self.name}, 색깔: {self.color}")


cat1 = Cat()
cat2 = Cat()
cat1.name = "나비"
cat1.color = "하얀색"
cat2.name = "초코"
cat2.color = "갈색"
cat1.meow()
cat1.info()
cat2.meow()
cat2.info()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:17:33 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682178146</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682179057</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Car:
  name='아반떼'
  size='중형차'
  def move(self):
    print(self.name,'이(가) 이동합니다')
car1=Car()
car1.move()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:18:05 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682179057</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682180793</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class semiconductorchip:
  name='뉴로모픽 반도체'
  size=5
  speed=3.2
  def run(self):
    print(f"{self.size}nm의{self.name}가 {self.speed}GHz의 속도로 연산 중입니다.")

chip1=semiconductorchip()
chip1.run()

chip2=semiconductorchip()
chip2.size=2
chip2.speed=8
chip2.run()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:19:04 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682180793</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682181789</link>
         <description><![CDATA[<p><br/></p><pre><code class="language-notebook-python">class Rabbit:
  name='토끼'
  weight=10
  def speak(self):
    print('저는',self.name,'입니다')
  def jump(self):
    print(self.name,'이 점프합니다')
Rabbit1=Rabbit()
Rabbit1.speak()
Rabbit1.jump()
Rabbit2=Rabbit()
Rabbit2.speak()
Rabbit2.jump()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:19:35 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682181789</guid>
      </item>
      <item>
         <title>20515 윤준서</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682183007</link>
         <description><![CDATA[<p>객체명 : 게임 캐릭터</p><p>속성 : 이름, 레벨, 체력, 공격력, 인벤토리</p><p>동작 : 이동, 공격, 아이템 사용, 레벨 업</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:20:04 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682183007</guid>
      </item>
      <item>
         <title>20425 최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682183303</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Person:
  name1 = "김철수"
  weight1 = 65
  name2 = "고영희"
  def dog(self):
    print(self.name1,"이(가) 개가 됩니다.")

  def wake(self):
    print(self.name1,"이(가) 정신을 차립니다.")

  def strike(self):
    print(self.name2,"이(가)",self.name1,"을(를) 가격합니다!")

person1 = Person()
person1.dog()
person1.strike()
person2 = Person()
person2.name2 = "김유리"
person2.strike()
person2.wake()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:20:13 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682183303</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682211984</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Cat:
  name='두부'
  age=1
  def jump(self):
    print(f'{self.name}가 캣 타워에 올라갑니다')
  def scratch(self):
    print(f'{self.name}가 주인을 할큅니다.')
cat1=Cat()
print(cat1.name)
cat1.jump()
cat1.scratch()

cat2=Cat()
cat2.name='모카'
print(cat2.name)
cat2.jump()
cat2.scratch()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:35:50 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682211984</guid>
      </item>
      <item>
         <title>20515 윤준서</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682219036</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class player:
  name="플레이어"
  damage=10
  def attack(self):
      print("공격합니다.")
      print(f"{self.name}가 공격합니다.")
  def Lv(self):
      print("레벨이 올랐습니다.")
      print(f"{self.name}의 레벨이 올랐습니다.")
player1=player()
print(player1.name)
player1.attack()
player1.Lv()
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:40:02 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682219036</guid>
      </item>
      <item>
         <title>20507 박규태</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682219654</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads-usc1.storage.googleapis.com/4740759891/7ea72e6238dcd0ce28105d9b6bd978ab/image.png" />
         <pubDate>2025-11-14 02:40:19 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682219654</guid>
      </item>
      <item>
         <title>20221 정준혁</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682226882</link>
         <description><![CDATA[<p>class Lion: </p><p> </p><p>    def roar(self): </p><p>        print(f"{self.name}({self.age}살): 어흥") </p><p> </p><p>  </p><p>    def info(self): </p><p>        print(f"이름: {self.name}, 나이: {self.age}살") </p><p> </p><p>lion1 = Lion() </p><p>lion2 = Lion() </p><p>lion1.name = "심바" </p><p>lion1.age = 3 </p><p>lion2.name = "무파사" </p><p>lion2.age = 7</p><p>lion1.roar()  </p><p>lion1.info() </p><p>print("~~~~~~~~~~~~~~~") </p><p>lion2.roar() </p><p>lion2.info()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-14 02:44:17 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3682226882</guid>
      </item>
      <item>
         <title>클래스 설계-홍길동</title>
         <author>online25</author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690908419</link>
         <description><![CDATA[<p>1. 클래스명: Tree(나무)</p><p>2. 변수: age(나이), height(키), cultivar(품종)</p><p>3. 메소드: sprout(싹이 나다), bloom(꽃이 피다), leavesfall(잎이 지다)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:28:35 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690908419</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690937228</link>
         <description><![CDATA[<p>1. 클래스명: Student</p><p>2. 변수: name, condition(현재 상태)</p><p>3. 메소드: say(현재 상태를 말함)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:45:10 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690937228</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690940252</link>
         <description><![CDATA[<p>클래스명: Student(학생)</p><p>변수 : name(이름), grade(학년), score(점수) – 메소드 =&gt; study() : 공부해서 점수 +5, take_exam() : 시험 봐서 점수 +20, show_info() : 학생 정보 출력</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:47:06 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690940252</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690940569</link>
         <description><![CDATA[<p>1. 클래스명 : 에어컨</p><p>2. 변수: temperature(현재 온도), mode : 작동 모드(냉방, 제습, 송풍 등), power : 전원 상태(True/False), speed : 풍량</p><p>3. 메소드 : turn_on : 전원을 켠다, turn_off : 전원을 끈다, control : 온도를 조절한다, change_mode : 모드를 변경한다</p><p>change_speed : 풍량을 조절한다</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:47:17 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690940569</guid>
      </item>
      <item>
         <title>20315 윤상민</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690942779</link>
         <description><![CDATA[<p><strong>1. 클래스명</strong></p><p>Bicycle</p><p><strong>2. 변수(속성)</strong></p><p>brand : 브랜드</p><p>speed : 현재 속도</p><p>gear : 현재 기어</p><p><strong>3. 메서드</strong></p><p>pedal() : 페달을 밟아 속도 증가</p><p>brake() : 브레이크를 잡아 속도 감소</p><p>change_gear() : 기어 변경</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:48:53 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690942779</guid>
      </item>
      <item>
         <title>20425 최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690945280</link>
         <description><![CDATA[<ol><li><p>클래스명 : Dog(개)</p></li><li><p>변수: age(나이), name(이름), breed(견종)</p></li><li><p>메소드: bark(짖다), sit(앉다), get_age(나이먹기)</p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:50:37 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690945280</guid>
      </item>
      <item>
         <title>20427황철하</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690952528</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Student:
  def __init__(self,name,condition):
    self.name=name
    self.condition=condition
  def say(self):
    print(f'{self.name}:{self.condition}')

student1=Student('철수','집에가고싶다')
student1.say()
student2=Student('영희','zzZ')
student2.say()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:55:06 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690952528</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690953117</link>
         <description><![CDATA[<p>1.클래스명: soccer player (축구 선수)</p><p>2.변수: name(이름), height(키), age(나이), nationality(국적), position(포지션), team(소속 팀)</p><p>3.메소드: dribble(드리블하기), tackle(태클하기), run(뛰기), pass(패스하기), clear(걷어내기)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:55:31 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690953117</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690954457</link>
         <description><![CDATA[<p>클래스명: 배터리</p><p>변수: capacity( 배터리 전체 용량), level(베터리 잔량)</p><p>메소드: charge(충전), use(사용)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:56:30 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690954457</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690954922</link>
         <description><![CDATA[<p>1. 클래스명: 차</p><p>2. 변수: age(나이), weight(무게), brand(품종)</p><p>3. 메소드: go(가다), back(뒤로 가다), stop(멈추다)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:56:50 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690954922</guid>
      </item>
      <item>
         <title>20309 김준용</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690957273</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Student:
    def __init__(self, name, grade):
        self.name = name
        self.grade = grade   
        self.score = 0  

    def study(self):
        self.score += 5
        print(f"{self.name}이 공부한다!!!!!. 현재 점수: {self.score}")

    def take_exam(self):
        self.score += 20
        print(f"{self.name} 시험을 친다!!!. 현재 점수: {self.score}")

    def show_info(self):
        print(f"이름: {self.name}, 학년: {self.grade}, 점수: {self.score}")

kjy = Student("성이름", 3)
for i in range(8):
  kjy.study()
kjy.take_exam()
kjy.show_info()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:58:25 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690957273</guid>
      </item>
      <item>
         <title>20507 박규태</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690958425</link>
         <description><![CDATA[<p>클래스명:냉장고</p><p>변수: model(모델명),<strong> </strong>capacity(용량)</p><p>temperture(현재 온도), freezertemperature(냉동실 온도), idpoweron(전원 상태), dooropen(문 열림 여부)</p><p>메소드: power(냉장고 전원을 켠다)<strong>,</strong> poweroff(전원을 끈다), opendoor(문을 연다), closedoor( 문을 닫는다), settemperature(냉장실 온도 설정)</p><p> setfreezertemperature(냉동실 온도 설정)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 00:59:03 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690958425</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690965805</link>
         <description><![CDATA[<p>1.클래스명: airpods(에어팟)</p><p>2.변수: volume(현재 음량), model(기종), anc(노이즈캔슬링 현재 상태)</p><p>3.메소드: volume up,down(음량 키우기,줄이기) anc on,off(노이즈캔슬링 켜기 끄기)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:03:34 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690965805</guid>
      </item>
      <item>
         <title>20219 정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690966853</link>
         <description><![CDATA[<p>클래스명: 컴퓨터</p><p>변수: cpu,ram,storage,power_on(전원이 켜져 있는지)</p><p>매소드: power(): 전원을 켜거나 끈다. upgrade_ram(): 램 용량을 증가시킨다. upgrade_storage(amount): 저장 공간을 증가시킨다. show_specs(): 사양을 출력한다</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:04:07 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690966853</guid>
      </item>
      <item>
         <title>20501 곽현승</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690970113</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Airconditioner:
    def __init__(self, temperature=24, mode="냉방", power=False, speed=1):
        self.temperature = temperature
        self.mode = mode
        self.power = power
        self.speed = speed

    def turn_on(self):
        self.power = True
        print("에어컨 전원이 켜집니다.")

    def control(self, temperature):
        self.temperature = temperature
        print(f"온도가 {temperature}도로 설정되었습니다.")

    def change_mode(self, mode):
        self.mode = mode
        print(f"{mode}모드로 변경되었습니다.")

    def change_speed(self, speed):
        self.speed = speed
        print(f"풍량이 {speed}단으로 조절되었습니다.")

ac = Airconditioner()
ac.turn_on()
ac.control(22)
ac.change_mode("제습")
ac.change_speed(3)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:05:54 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690970113</guid>
      </item>
      <item>
         <title>20303 김건후</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690974262</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Car:
    def __init__(self, age, weight, brand):
        self.age = age      
        self.weight = weight 
        self.brand = brand   

    def go(self):
        print(f"{self.age}, {self.weight}, {self.brand} 자동차가 앞으로 갑니다")

    def back(self):
        print(f"{self.age}, {self.weight}, {self.brand} 자동차가 뒤로 갑니다")

    def stop(self):
        print(f"{self.age}, {self.weight}, {self.brand} 자동차가 멈췄습니다.")

car1 = Car("2019년산", "900kg","포르쉐")
car1.go()
car2 = Car("2023년산", "1300kg","벤츠")
car2.stop()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:08:03 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690974262</guid>
      </item>
      <item>
         <title>20623 제갈민규</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690974709</link>
         <description><![CDATA[<p><br/></p><pre><code class="language-notebook-python">class Battery:
    def __init__(self, capacity, level):
        self.capacity = capacity
        self.level = level

    def charge(self, amount):
      self.level += amount
      print(f"충전 중, {self.level}남음")
    def use(self, amount):
      self.level -= amount
      print(f"사용중, {self.level}남음")

# 객체 생성
batter1=Battery(100,50)
batter1.charge(30)
batter1.use(20)</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:08:15 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690974709</guid>
      </item>
      <item>
         <title>20425 최준석</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690981613</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Dog:
  population = 0
  native = 'korea'
  isBarking = False
  isSitting = False

  def __init__(self, name, age, breed):
    self.name = name
    self.age = age
    self.breed = breed
    Dog.population += 1

  def bark(self):
    self.isBarking = True
    print(self.name,"이(가) 짖는중임")
    print()

  def stopBark(self):
    self.isBarking = False
    print(self.name,"야 그만짖으삼")
    print()

  def sit(self):
    self.isSitting = True
    print(self.name,"이(가) 앉음")
    print()

  def stopSitting(self):
    self.isSitting = False
    print(self.name,"이(가) 일어남")
    print()

  def getAge(self):
    self.age += 1
    print(f"{self.name}이(가) 나이먹음 {self.age}살됨")
    print()

  def subAge(self):
    self.age -= 1
    print(f"{self.name}이(가) 시간역행함 {self.age}살됨")
    print()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:11:42 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690981613</guid>
      </item>
      <item>
         <title>20507 박규태</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690987360</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Refrigerator:
    def __init__(self, brand, capacity):
        self.brand = brand          
        self.capacity = capacity   
        self.items = []             
        self.door_open = False      

    
    def open_door(self):
        self.door_open = True
        print("문을 열었습니다.")

    def close_door(self):
        self.door_open = False
        print("문을 닫았습니다.")

    def add_item(self, item):
        if not self.door_open:
            print("문이 닫혀 있어 음식을 넣을 수 없습니다.")
            return

        if len(self.items) &gt;= self.capacity:
            print("냉장고가 가득 찼습니다.")
            return

        self.items.append(item)
        print(f"{item}을(를) 넣었습니다.")

    def show_items(self):
        print("냉장고 안의 음식 목록:")
        if not self.items:
            print("비어 있습니다.")
        else:
            for food in self.items:
                print("-", food)

fridge = Refrigerator("삼성", 3)
fridge.open_door()
fridge.add_item("우유")
fridge.add_item("사과")
fridge.close_door()

fridge.show_items()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:14:37 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690987360</guid>
      </item>
      <item>
         <title>20210 윤성빈</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690989711</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class SoccerPlayer:
    def __init__(self, name, height, age, nationality, position, team):
        self.name = name
        self.height = height
        self.age = age
        self.nationality = nationality
        self.position = position
        self.team = team

    def dribble(self):
        print(f"{self.team}의 {self.name} 선수가 드리블을 시도합니다!")

    def tackle(self):
        print(f"{self.height}cm의 키를 가진{self.name} 선수가 태클을 합니다!")

    def run(self):
        print(f"{self.nationality}의 {self.name} 선수가 전력으로 달립니다!")

    def pass_ball(self):
        print(f"{self.position} {self.name} 선수가 패스를 합니다!")

    def clear(self):
        print(f"{self.age}세 {self.name} 선수가 공을 크게 걷어냅니다!")

player1 = SoccerPlayer("손흥민","183","33","대한민국","FW","LA갤럭시")

player1.dribble()
player1.run()
player1.pass_ball()
player1.clear()
player1.tackle()

player2 = SoccerPlayer("네이마르","175","33","브라질","FW","산투스FC")

player2.dribble()
player2.run()
player2.pass_ball()
player2.clear()
player2.tackle()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:15:43 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690989711</guid>
      </item>
      <item>
         <title>20219 정동권</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690995957</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Computer:
    def __init__(self, cpu, ram, storage):
       
        self.cpu = cpu
        self.ram = ram
        self.storage = storage
        self.power_on = False  # 전원은 기본적으로 꺼져있는 상태(False)로 시작

    def power(self):
       
        self.power_on = not self.power_on  # 상태를 반전시킴 (True &lt;-&gt; False)
        if self.power_on:
            print("컴퓨터 전원이 켜졌습니다.")
        else:
            print("컴퓨터 전원이 꺼졌습니다.")

    def upgrade_ram(self, amount):
        
        self.ram += amount
        print(f"RAM을 {amount}GB 업그레이드했습니다. (현재: {self.ram}GB)")

    def upgrade_storage(self, amount):
        
        self.storage += amount
        print(f"저장 공간을 {amount}GB 업그레이드했습니다. (현재: {self.storage}GB)")

    def show_specs(self):
        status = "켜짐" if self.power_on else "꺼짐"
        print("\n=== 컴퓨터 사양 ===")
        print(f"CPU     : {self.cpu}")
        print(f"RAM     : {self.ram}GB")
        print(f"Storage : {self.storage}GB")
        print(f"전원    : {status}")
        print("===================\n")



# 컴퓨터 객체 생성
my_pc = Computer("Intel i7", 16, 512)

# 초기 사양 확인
my_pc.show_specs()

# 전원 켜기
my_pc.power()

# 부품 업그레이드
my_pc.upgrade_ram(16)
my_pc.upgrade_storage(512)

# 최종 사양 확인
my_pc.show_specs()

# 전원 끄기
my_pc.power()
</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-20 01:18:30 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3690995957</guid>
      </item>
      <item>
         <title>20424정형준</title>
         <author></author>
         <link>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3692860366</link>
         <description><![CDATA[<pre><code class="language-notebook-python">class Airpods:
  volume=10
  def __init__(self, model):
    self.model= model

  def upVolume(self):
    self.volume+=1
    print(f"증가 후 {self.model}의 현재 음량:{self.volume}")
  def downVolume(self):
    self.volume-=1
    print(f'감소 후 {self.model}의 현재 음량:{self.volume}')
  
  def onAnc(self):
    self.anc=True
    print(f'현재 {self.model}의 노이즈 캔슬링:{self.anc}')
  def offAnc(self):
    self.anc=False
    print(f'현재 {self.model}의 노이즈 캔슬링:{self.anc}')


my_airpods1= Airpods('airpods pro')
my_airpods1.upVolume()
my_airpods1.onAnc()

my_airpods2=Airpods('airpods pro2')
my_airpods2.downVolume()
my_airpods2.offAnc()</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2025-11-21 01:55:36 UTC</pubDate>
         <guid>https://padlet.com/dgonline1/ra24uka6eftxq67o/wish/3692860366</guid>
      </item>
   </channel>
</rss>
