<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>1-8 프로그래밍 활용 by 교사고보영</title>
      <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2025-01-03 02:27:27 UTC</pubDate>
      <lastBuildDate>2025-01-07 00:28:28 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4cd.png</url>
      </image>
      <item>
         <title>10807김범준(막대그래프)</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279020933</link>
         <description><![CDATA[<p>import turtle</p><p># 입력받기</p><p>data = input("막대그래프를 그릴 정수 값을 입력하세요 (쉼표 구분): ")</p><p>values = list(map(int, data.split(',')))</p><p># 설정</p><p>t = turtle.Turtle()</p><p>t.speed(8)</p><p># 왼쪽 아래로 이동</p><p>t.penup()</p><p>t.goto(-300, -250)  # 시작 위치로 이동</p><p>t.pendown()</p><p># 막대그래프 그리기</p><p>for value in values:</p><p>    t.begin_fill()</p><p>    t.forward(50)  #너비</p><p>    t.left(90)</p><p>    t.forward(value)  #높이</p><p>    t.left(90)</p><p>    t.forward(50)  #너비</p><p>    t.left(90)</p><p>    t.forward(value)  #높이</p><p>    t.left(90)</p><p>    t.end_fill()</p><p>    t.penup()</p><p>    t.forward(90)  #사이 간격</p><p>    t.pendown()</p><p># 화면 대기</p><p>turtle.exitonclick()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:27 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279020933</guid>
      </item>
      <item>
         <title>10803고다현</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279020990</link>
         <description><![CDATA[<p>#원 그리기</p><p>def dC(color,radius,x,y):</p><p>    t.penup()</p><p>    t.goto(x,y)</p><p>    t.pendown()</p><p>    t.color(color)</p><p>    t.begin_fill()</p><p>    <a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(radius)</p><p>    t.end_fill()</p><p>import turtle</p><p>t=turtle.Turtle()</p><p>t.color('seagreen')</p><p>t.pensize(4)</p><p>dC('seagreen',50,-200,20)</p><p>dC('white',10,-180,80)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:33 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279020990</guid>
      </item>
      <item>
         <title>10804곽나윤</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021010</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Pen()</p><p>t.forward(0)</p><p>t.right(50)</p><p>t.forward(100)</p><p>t.right(90)</p><p>t.forward(300)</p><p>t.right(90)</p><p>t.forward(250)</p><p>t.right(90)</p><p>t.forward(200)</p><p>t.right(90)</p><p>t.forward(100)</p><p>t.left(100)</p><p>t.forward(100)</p><p>t.right(100)</p><p>t.forward(170)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:35 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021010</guid>
      </item>
      <item>
         <title>10828정원재</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021033</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.shape('turtle')</p><p>a=int(input('최고 차항의 계수를 입력하세요'))</p><p>b=int(input('일차항의 계수를 입력하세요'))</p><p>c=int(input('상수항의 계수를 입력하세요'))</p><p>d=(-b±√b**2-4*a*c)/2*a</p><p>if(b**2-4*a*c&lt;0):</p><p>    print(f'이 방정식은 허근 {d}을 갖습니다.')</p><p>else():</p><p>    print(f'이 방정식은 실근{d}를 갖습니다.')</p><p>title('이차 함수 그리기')</p><p>y=Turtle()</p><p>y.goto(0,-200)</p><p>y.goto(0,200)</p><p>y.setheading(90)</p><p>y.write('y')</p><p>x=Turtle()</p><p>x.goto(0,-200)</p><p>x.goto(0,200)</p><p>x.setheading(90)</p><p>x.write('x')</p><p>o=Turtle()</p><p>o.pen up()</p><p>o.hide turtle()</p><p>o.goto(0,0)</p><p>o.write('o')</p><p>pen=Turtle()</p><p>pen.pen up()</p><p>pen.goto(-200,0)</p><p>pen.pensize(1)</p><p>xcor=-200</p><p>while xcor&lt;=200</p><p>    ycor=(a*)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:37 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021033</guid>
      </item>
      <item>
         <title>10801 강슬기</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021073</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.reset()</p><p>t.speed(10)</p><p>t.screen.bgcolor('light sky blue')</p><p>t.pu()</p><p>t.goto(-1000, -300)</p><p>t.pencolor('light green')</p><p>t.pensize(200)</p><p>t.pd()</p><p>t.fd(3000)</p><p>t.pu()</p><p>t.goto(-600, -175)</p><p>t.pd()</p><p>t.pencolor('chocolate')</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:41 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021073</guid>
      </item>
      <item>
         <title>10814 박가은</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021077</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.screen.bgcolor('black')</p><p>t.home()</p><p>t.color('yellow')</p><p>t.shape('circle')</p><p>t.forward(200)</p><p>t.backward(400)</p><p>t.forward(200)</p><p>t.left(90)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(400)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.left(45)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(400)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.left(90)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(400)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.up()</p><p>t.color('skyblue')</p><p>t.forward(300)</p><p>t.down()</p><p>t.forward(100)</p><p>t.backward(200)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(100)</p><p>t.left(45)</p><p>t.forward(100)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(180)</p><p>t.forward(200)</p><p>t.left(180)</p><p>t.forward(100)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:41 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021077</guid>
      </item>
      <item>
         <title>10802 강지</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021145</link>
         <description><![CDATA[<p>import turtle</p><p># 기본 설정</p><p>t = turtle.Turtle()</p><p>t.speed(5)  # 거북이 속도 조절</p><p># 큰 원</p><p>t.penup()</p><p>t.goto(0, -100)  # 시작 위치 설정</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(100)  # 반지름이 100인 원</p><p># 중간 크기 원</p><p>t.penup()</p><p>t.goto(0, -70)  # 약간 안쪽으로 이동</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(70)  # 반지름이 70인 원</p><p># 작은 원</p><p>t.penup()</p><p>t.goto(0, -40)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(40)  # 반지름이 40인 원</p><p><br/></p><p><br/></p><p>이 코드는 미디어 계열에서 중요한 <strong>카메라 렌즈</strong>를 상징적으로 표현할 수 있다.  카메라는 영상 제작, 사진 촬영 등 미디어의 핵심 도구로, 이 프로그램은 이를 시각적으로 그려내 미디어와 연관성을 보여준다. Python의 turtle을 활용해 프로그래밍으로 디자인 요소를 그리는 방법을 탐구했으며</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:49 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021145</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021187</link>
         <description><![CDATA[<p>from turtle import Turtle</p><p>from random import random</p><p>t = Turtle()</p><p>for i in range(100):</p><p>    steps = int(random() * 100)</p><p>    angle = int(random() * 360)</p><p>    t.right(angle)</p><p>    t.fd(steps)</p><p>t.screen.mainloop()</p><p>import turtle as t</p><p>from random import random</p><p>for i in range(100):</p><p>    steps = int(random() * 100)</p><p>    angle = int(random() * 360)</p><p>    t.right(angle)</p><p>    t.fd(steps)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:55 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021187</guid>
      </item>
      <item>
         <title>10812김태욱</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021189</link>
         <description><![CDATA[<p>import turtle</p><p>screen = turtle.Screen()</p><p>screen.bgcolor("skyblue")</p><p>t = turtle.Turtle()</p><p>t.shape("turtle")</p><p>t.speed(3)</p><p>t.penup()</p><p>t.goto(-100, -50)</p><p>t.pendown()</p><p>t.begin_fill()</p><p>t.color("black")</p><p>t.setheading(0)</p><p>t.forward(200)</p><p>t.left(90)</p><p>t.forward(50)</p><p>t.left(90)</p><p>t.forward(200)</p><p>t.left(90)</p><p>t.forward(50)</p><p>t.end_fill()</p><p>t.penup()</p><p>t.goto(20, -50)</p><p>t.pendown()</p><p>t.setheading(90)</p><p>t.pensize(5)</p><p>t.forward(150)</p><p>t.penup()</p><p>t.goto(-40, 100)</p><p>t.pendown()</p><p>t.begin_fill()</p><p>t.color("white")</p><p>t.setheading(45)</p><p>t.forward(80)</p><p>t.setheading(0)</p><p>t.forward(80)</p><p>t.setheading(-45)</p><p>t.forward(80)</p><p>t.setheading(90)</p><p>t.forward(80)</p><p>t.end_fill()</p><p>screen.exitonclick()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:55:55 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021189</guid>
      </item>
      <item>
         <title>10806김범수</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021233</link>
         <description><![CDATA[<p><br/></p><p>import turtle</p><p>t = turtle.Turtle()</p><p>t.screen.bgcolor('skyblue')</p><p>t.color('black')</p><p>t.shape('classic')</p><p>t.pendown()</p><p>t.begin_fill()</p><p>t.forward(100)</p><p>t.left(140)</p><p>t.forward(70)</p><p>t.right(45)</p><p>t.forward(40)</p><p>t.right(95)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(250)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.right(90)</p><p>t.forward(40)</p><p>t.right(45)</p><p>t.forward(65)</p><p>t.left(135)</p><p>t.forward(60)</p><p>t.end_fill()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:00 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021233</guid>
      </item>
      <item>
         <title>10822 이도하</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021264</link>
         <description><![CDATA[<p>import turtle</p><p># 화면 설정</p><p>screen = turtle.Screen()</p><p>screen.bgcolor("white")  # 배경을 흰색으로 설정</p><p># 터틀 설정</p><p>bill = turtle.Turtle()</p><p>bill.shape("turtle")</p><p>bill.speed(5)</p><p># 50000원 지폐 그리기</p><p>def draw_bill():</p><p>    bill.penup()</p><p>    bill.goto(-150, 75)  # 지폐의 시작점을 설정</p><p>    bill.pendown()</p><p>    # 지폐의 사각형 형태 그리기</p><p>    bill.begin_fill()</p><p>    bill.color("yellow")  # 노란색으로 색을 칠하기</p><p>    for _ in range(2):</p><p>        bill.forward(300)  # 가로 길이</p><p>        bill.right(90)</p><p>        bill.forward(150)  # 세로 길이</p><p>        bill.right(90)</p><p>    bill.end_fill()</p><p># '50000원' 텍스트 그리기</p><p>def draw_text():</p><p>    bill.penup()</p><p>    bill.goto(0, 0)  # 텍스트의 중앙 위치 설정</p><p>    bill.pendown()</p><p>    bill.color("black")  # 텍스트 색상은 검은색</p><p>    bill.write("50000원", align="center", font=("Arial", 36, "bold"))</p><p># 50000원 지폐 그리기 및 텍스트 쓰기</p><p>draw_bill()</p><p>draw_text()</p><p># 터틀 숨기기</p><p>bill.hideturtle()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:03 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021264</guid>
      </item>
      <item>
         <title>10830 최민경</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021269</link>
         <description><![CDATA[<p>import turtle</p><p>import math</p><p># 터틀 설정</p><p>screen = turtle.Screen()</p><p>screen.bgcolor("white")</p><p>screen.setworldcoordinates(-150, -150, 150, 150)  # 화면의 좌표 범위 설정</p><p>t = turtle.Turtle()</p><p>t.speed(0)  # 최대 속도 설정</p><p>t.width(2)</p><p># DNA 나선의 설정</p><p>turns = 10  # 나선의 회전 횟수</p><p>points_per_turn = 50  # 회전당 점의 수</p><p>radius = 100  # 나선의 반지름</p><p>step = 10  # 각도 변화</p><p>spacing = 3  # y축 간격 (나선이 일정하게 증가하도록)</p><p># DNA 나선 그리기 함수</p><p>def draw_dna_strand(color, offset, direction):</p><p>    t.penup()</p><p>    t.goto(offset, 0)  # 시작 위치 설정</p><p>    t.pendown()</p><p>    t.color(color)</p><p>    </p><p>    # 나선 구조 그리기</p><p>    for i in range(points_per_turn * turns):</p><p>        angle = i * step</p><p>        x = radius * math.cos(math.radians(angle))  # 나선의 x 위치</p><p>        y = spacing <em> i </em> direction  # y값을 일정하게 증가하도록 설정</p><p>        </p><p>        # 화면 밖으로 나가지 않도록 제한</p><p>        if abs(x) &gt; 150 or abs(y) &gt; 150:  # 화면의 범위를 벗어나면 그리지 않음</p><p>            break</p><p>        </p><p>        t.goto(x + offset, y)  # offset을 추가하여 두 나선이 교차하게 만듦</p><p># 첫 번째 나선 (파란색) - 시계방향으로 회전</p><p>draw_dna_strand("blue", -10, 1)  # 첫 번째 나선 (위로 증가)</p><p># 두 번째 나선 (빨간색) - 반시계방향으로 회전</p><p>draw_dna_strand("red", 10, -1)  # 두 번째 나선 (아래로 증가)</p><p># 종료</p><p>t.hideturtle()</p><p>screen.mainloop()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:04 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021269</guid>
      </item>
      <item>
         <title>10823이승준</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021443</link>
         <description><![CDATA[<p>import turtle</p><p>t= turtle</p><p>t.left(90)</p><p>t.speed(10)</p><p>for i in range (1,10):</p><p>    t.forward(30)</p><p>    t.right(50)</p><p>    t.forward(20)</p><p>    t.right(140)</p><p>    t.forward(35)</p><p>    t.left(230)</p><p>t.goto(26,19)</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(34)</p><p>t.goto(-10,-50)</p><p>for i in range (1,100):</p><p>    t.forward(130)</p><p>    t.right(80)</p><p>    t.forward(50)</p><p>    t.right(160)</p><p>    t.forward(75)</p><p>    t.left(280)</p><p>    t.forward(70)</p><p>    t.right(100)</p><p>    t.forward(35)</p><p>    t.left(280)</p><p>    t.forward(40)</p><p>    t.right(30)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:18 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021443</guid>
      </item>
      <item>
         <title>10821이곤</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021458</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.left(45)</p><p>t.forward(200)</p><p>t.right(90)</p><p>t.forward(30)</p><p>t.right(90)</p><p>t.forward(30)</p><p>t.right(90)</p><p>t.forward(30)</p><p>t.home()</p><p>t.right(45)</p><p>t.forward(30)</p><p>t.left(90)</p><p>t.forward(180)</p><p>t.left(90)</p><p>t.forward(30)</p><p>t.home()</p><p>t.right(90)</p><p>t.forward(180)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:20 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021458</guid>
      </item>
      <item>
         <title>10810김소망</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021496</link>
         <description><![CDATA[<p>import turtle</p><p>t = turtle.Turtle()</p><p># 얼굴, 눈 그리기 함수</p><p>def drawCircle(color, radius, x, y):</p><p>    t.penup()</p><p>    t.goto(x, y)</p><p>    t.pendown()</p><p>    t.color(color)</p><p>    t.begin_fill()</p><p>    <a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(radius)</p><p>    t.end_fill()</p><p># 얼굴, 눈 그리기</p><p>drawCircle('yellow', 100, 0, 0)  # 얼굴</p><p>drawCircle('white', 30, -40, 100)  # 왼쪽 눈 흰자위</p><p>drawCircle('black', 15, -40, 100)  # 왼쪽 눈 동공</p><p>drawCircle('white', 30, 40, 100)  # 오른쪽 눈 흰자위</p><p>drawCircle('black', 15, 40, 100)  # 오른쪽 눈 동공</p><p># 웃는 입 그리기</p><p>t.penup()</p><p>t.goto(-40, 60)  # 입의 시작 지점을 위로 조정</p><p>t.pendown()</p><p>t.setheading(-60)  # 입의 각도 설정 (아래쪽으로 미소)</p><p>t.color('black')  # 입 색상을 검정색으로 설정</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(40, 120)  # 반원형 웃는 입</p><p>t.penup()</p><p>t.goto(120, 20)  # 웃는 얼굴 오른쪽으로 이동</p><p>t.pendown()</p><p>drawHeart('red', 30, 0, 0)  # 빨간 하트 추가</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:24 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021496</guid>
      </item>
      <item>
         <title>10825이재연</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021498</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.shape('turtle')</p><p>radius = int(input('원의 반지름을 입력하세요. : '))</p><p>color = input('원의 색깔을 입력하세요. : ')</p><p>t.color(clolor)</p><p>t. begin_fill() </p><p>t. circle(radius)</p><p>t. end_fill() </p><p>turtle.exitonclick()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:25 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021498</guid>
      </item>
      <item>
         <title>10824 이예린</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021510</link>
         <description><![CDATA[<p>#추리게임</p><p>print('한 저택에서 살인사건이 발생했다. 사건 파일을 보며용의자와 저택을 조사하고 범인을 찾아보자.')</p><p>while 1:</p><p>    print('무엇을 할까? 1.사건파일 보기 2. 저택 조사 3. 용의자 조사 4.범인 검거')</p><p>          a=input()</p><p>          if a=='1':</p><p>              print('피해자: mh그룹 회장 강문혁. 회장실에서 목에 칼이 꼽힌 채 사망. 사망 추정시간 17~20시)</p><p>                    print('용의자 1: 부회장 박선욱. 피해자와 오랜 친구 사이로 mh그룹의 공동 설립자.')</p><p>                   print('용의자 2</p><p>                    print('용의자 3</p><p>                    print('용의자 4</p><p>                                 </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:26 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021510</guid>
      </item>
      <item>
         <title>10818 송진규</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021580</link>
         <description><![CDATA[<p><br/></p><p>import turtle</p><p>t=turtle.Pen()</p><p>t.screen.bgcolor('skyblue')</p><p>t.color('green')</p><p>for I in range(2):</p><p>    t.forward(300)</p><p>    t.left(90)</p><p>    t.forward(250)</p><p>    t.left(90)</p><p>t.left(180)</p><p>t.color('black')</p><p>t.penup()</p><p>t.forward(-280)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(45)</p><p>t.left(90)</p><p>t.penup()</p><p>t.forward(90)</p><p>t.pendown()</p><p>t.forward(35)</p><p>t.left(45)</p><p>t.forward(78)</p><p>t.left(180)</p><p>t.forward(78)</p><p>t.left(10)</p><p>t.forward(95)</p><p>t.left(180)</p><p>t.forward(95)</p><p>t.right(55)</p><p>t.forward(50)</p><p>t.left(30)</p><p>t.forward(50)</p><p>t.left(180)</p><p>t.forward(50)</p><p>t.left(110)</p><p>t.forward(50)</p><p>t.penup()</p><p>t.home()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:56:33 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279021580</guid>
      </item>
      <item>
         <title>10820이강현</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279023203</link>
         <description><![CDATA[<p>import turtle </p><p>screen = turtle.Screen() screen.bgcolor("white")</p><p>chef = turtle.Turtle() chef.speed(3) chef.penup() chef.goto(0, -50) chef.pendown() chef.begin_fill() chef.color("peachpuff") <a rel="noopener noreferrer nofollow" href="http://chef.circle">chef.circle</a>(50) chef.end_fill() chef.penup() chef.goto(-40, -50) chef.pendown() chef.begin_fill() chef.color("white") chef.setheading(0) for <em> in range(2): chef.forward(80) chef.left(90) chef.forward(100) chef.left(90) chef.end</em>fill() chef.penup() chef.goto(-40, -50) chef.pendown() chef.setheading(-90) chef.forward(50) chef.backward(100)  chef.penup() chef.goto(40, -50) chef.pendown() chef.setheading(90) chef.forward(50) chef.backward(100)  chef.penup() chef.goto(-60, 30) chef.pendown() chef.begin_fill() chef.color("white") chef.setheading(0) chef.forward(120) chef.left(90) <a rel="noopener noreferrer nofollow" href="http://chef.circle">chef.circle</a>(20, 180)  chef.left(90) chef.forward(120) chef.end_fill()  chef.penup() chef.goto(-20, -10) chef.pendown() chef.begin_fill() chef.color("black") <a rel="noopener noreferrer nofollow" href="http://chef.circle">chef.circle</a>(5) chef.end_fill() chef.penup() chef.goto(20, -10) chef.pendown() chef.begin_fill() chef.color("black") <a rel="noopener noreferrer nofollow" href="http://chef.circle">chef.circle</a>(5) chef.end_fill() chef.penup() chef.goto(-20, -30) chef.pendown() chef.setheading(-60) <a rel="noopener noreferrer nofollow" href="http://chef.circle">chef.circle</a>(20, 120)  chef.hideturtle()  turtle.done()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:58:13 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279023203</guid>
      </item>
      <item>
         <title>10819 양동현</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279023342</link>
         <description><![CDATA[<p>import turtle</p><p>screen = turtle.Screen()</p><p>screen.bgcolor("skyblue")</p><p>pen = turtle.Turtle()</p><p>pen.speed(5)</p><p>pen.penup()</p><p>pen.goto(-150, -50)</p><p>pen.pendown()</p><p>pen.color("red")</p><p>pen.begin_fill()</p><p>pen.setheading(0)</p><p>pen.forward(300) </p><p>pen.left(90)</p><p>pen.forward(80)  </p><p>pen.left(90)</p><p>pen.forward(300) </p><p>pen.left(90)</p><p>pen.forward(60)  </p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(-100, 10)</p><p>pen.pendown()</p><p>pen.color("darkred")</p><p>pen.begin_fill()</p><p>pen.setheading(0)</p><p>pen.forward(200)  </p><p>pen.left(90)</p><p>pen.forward(40) </p><p>pen.left(90)</p><p>pen.forward(200) </p><p>pen.left(90)</p><p>pen.forward(30)  </p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(-120, -50)  </p><p>pen.pendown()</p><p>pen.color("black")</p><p>pen.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(20) </p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(100, -50)  </p><p>pen.pendown()</p><p>pen.color("black")</p><p>pen.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(20)</p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(100, 20)</p><p>pen.pendown()</p><p>pen.color("gray")</p><p>pen.pensize(10)</p><p>pen.setheading(0) </p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(50, 90) </p><p>pen.penup()</p><p>pen.goto(150, 70)  </p><p>pen.pendown()</p><p>pen.color("blue")</p><p>pen.pensize(5)</p><p>pen.setheading(20)  </p><p>pen.forward(100)  </p><p>pen.penup()</p><p>pen.goto(240, 90) </p><p>pen.pendown()</p><p>pen.color("red")</p><p>pen.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(15) </p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(250, 90)</p><p>pen.pendown()</p><p>pen.color("orange")</p><p>pen.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(20) </p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(245, 110) </p><p>pen.pendown()</p><p>pen.color("yellow")</p><p>pen.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(25)</p><p>pen.end_fill()</p><p>pen.hideturtle()</p><p>turtle.done()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 02:58:26 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3279023342</guid>
      </item>
      <item>
         <title>10808 김보람</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3281622388</link>
         <description><![CDATA[<p>import turtle</p><p># 화면 설정</p><p>t = turtle.Turtle()</p><p>t.speed(3)</p><p># 연필 몸통</p><p>t.penup()</p><p>t.goto(-20, 0)</p><p>t.pendown()</p><p>t.begin_fill()</p><p>t.fillcolor("yellow")</p><p>for _ in range(2):</p><p>    t.forward(40)</p><p>    t.left(90)</p><p>    t.forward(150)</p><p>    t.left(90)</p><p>t.end_fill()</p><p># 연필 끝 부분 (나무 부분)</p><p>t.penup()</p><p>t.goto(-20, 150)</p><p>t.pendown()</p><p>t.begin_fill()</p><p>t.fillcolor("brown")</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(10)</p><p>t.end_fill()</p><p># 연필 심</p><p>t.penup()</p><p>t.goto(-2, 150)</p><p>t.pendown()</p><p>t.color("black")</p><p>t.pensize(2)</p><p>t.forward(10)</p><p># 화면을 닫지 않게 유지</p><p>turtle.done()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-07 00:12:17 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3281622388</guid>
      </item>
      <item>
         <title>10815박정윤</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3281629641</link>
         <description><![CDATA[<p>거북이 모양 그리기</p><p>import turtle</p><p>def draw_turtle():</p><p>    # 거북이 모양 설정</p><p>    turtle.shape("turtle")</p><p>    turtle.speed(5)</p><p>    # 몸통 그리기</p><p>    turtle.penup()</p><p>    turtle.goto(0, -150)</p><p>    turtle.pendown()</p><p>    turtle.begin_fill()</p><p>    turtle.color("green")</p><p>    <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(150)</p><p>    turtle.end_fill()</p><p>    # 머리 그리기</p><p>    turtle.penup()</p><p>    turtle.goto(0, 120)</p><p>    turtle.pendown()</p><p>    turtle.begin_fill()</p><p>    <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(40)</p><p>    turtle.end_fill()</p><p>    # 다리 그리기</p><p>    legs_positions = [(-100, -80), (100, -80), (-100, -220), (100, -220)]</p><p>    for pos in legs_positions:</p><p>        turtle.penup()</p><p>        turtle.goto(pos)</p><p>        turtle.pendown()</p><p>        turtle.begin_fill()</p><p>        <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(40)</p><p>        turtle.end_fill()</p><p>    # 꼬리 그리기</p><p>    turtle.penup()</p><p>    turtle.goto(0, -310)</p><p>    turtle.setheading(270)</p><p>    turtle.pendown()</p><p>    turtle.begin_fill()</p><p>    <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(30, steps=3)  # 삼각형으로 꼬리</p><p>    turtle.end_fill()</p><p>    # 거북이 얼굴 장식 (눈)</p><p>    turtle.penup()</p><p>    turtle.goto(-20, 150)</p><p>    turtle.pendown()</p><p>    turtle.begin_fill()</p><p>    turtle.color("white")</p><p>    <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(10)</p><p>    turtle.end_fill()</p><p>    turtle.penup()</p><p>    turtle.goto(20, 150)</p><p>    turtle.pendown()</p><p>    turtle.begin_fill()</p><p>    turtle.color("white")</p><p>    <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(10)</p><p>    turtle.end_fill()</p><p>    turtle.hideturtle()</p><p>    turtle.done()</p><p># 실행</p><p>draw_turtle()</p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-07 00:23:08 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/rjcvm0wlh7gsis6h/wish/3281629641</guid>
      </item>
   </channel>
</rss>
