<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>1-7 프로그래밍 활용 by 교사고보영</title>
      <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2025-01-03 00:25:10 UTC</pubDate>
      <lastBuildDate>2025-01-06 03:54:59 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4cd.png</url>
      </image>
      <item>
         <title>10714 민기성</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940221</link>
         <description><![CDATA[<p>import turtle</p><p>def draw_rectangle(x, y, width, height, color):</p><p>    t.penup()</p><p>    t.goto(x, y)</p><p>    t.pendown()</p><p>    t.begin_fill()</p><p>    t.fillcolor(color)</p><p>    for _ in range(2):</p><p>        t.forward(width)</p><p>        t.right(90)</p><p>        t.forward(height)</p><p>        t.right(90)</p><p>    t.end_fill()</p><p>t = turtle.Turtle()</p><p>t.speed(3)</p><p>draw_rectangle(-100, 100, 200, 150, "lightgray")</p><p>draw_rectangle(-90, 90, 180, 130, "black")</p><p>draw_rectangle(-50, -50, 100, 20, "darkgray")</p><p>draw_rectangle(-70, -70, 140, 20, "gray")</p><p>t.hideturtle()</p><p>turtle.done()</p><p><br/></p><p>컴퓨터 공학과를 가고 싶어서 컴퓨터와 관련된 모니터를 직사각형의 형태로 그렸다</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:52:46 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940221</guid>
      </item>
      <item>
         <title>10722신혜</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940222</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.turtle()</p><p>t.color('yellow')</p><p>def f():</p><p>    t.forward(100)</p><p>    t.left(60)</p><p>def h():</p><p>    f(), f(), f(), f(), f(), f()</p><p>def g():</p><p>    h()</p><p>    t.forward(100)</p><p>    t.right(60)</p><p>g(), g(), g(), g(), g(), g()</p><p>turtle.exitonclick()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:52:46 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940222</guid>
      </item>
      <item>
         <title>10704김민지</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940589</link>
         <description><![CDATA[<p>import turtle</p><p>pen = turtle.Turtle()</p><p>pen.shape("turtle")</p><p>pen.speed(3)</p><p>pen.penup()</p><p>pen.goto(0, -50)</p><p>pen.pendown()</p><p>pen.begin_fill()</p><p>pen.color("yellow")</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(50)</p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(-20, 10)</p><p>pen.pendown()</p><p>pen.begin_fill()</p><p>pen.color("black")</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(5)</p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(20, 10)</p><p>pen.pendown()</p><p>pen.begin_fill()</p><p>pen.color("black")</p><p><a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(5)</p><p>pen.end_fill()</p><p>pen.penup()</p><p>pen.goto(0, -10)</p><p>pen.pendown()</p><p>pen.begin_fill()</p><p>pen.color("orange")</p><p>pen.setheading(-30)</p><p>for _ in range(3):</p><p>    pen.forward(15)</p><p>    pen.left(120)</p><p>pen.end_fill()</p><p>pen.hideturtle()</p><p>turtle.done()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:53:31 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940589</guid>
      </item>
      <item>
         <title>10708김지연</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940796</link>
         <description><![CDATA[<p>import turtle</p><p>t = turtle.Turtle()</p><p>t.shape("turtle")</p><p>t.speed(0)  </p><p>def f(x):  </p><p>    return x ** 2 + 1</p><p>t.goto(200, 0)</p><p>t.goto(0, 0)</p><p>t.goto(0, 200)</p><p>t.goto(0, 0)</p><p>for x in range(150):</p><p>    t.goto(x, int(0.01 * f(x)))</p><p>    </p><p>turtle.done()</p><p>이차함수의 성질을 이용하여 이차함수, 포물선 곡선을 표현하고 싶었다.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:53:53 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940796</guid>
      </item>
      <item>
         <title>10702 김민서</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940799</link>
         <description><![CDATA[<p>현미경 그리기</p><p><br/></p><p><br/></p><p>import turtle</p><p><br/></p><p>screen = turtle.Screen()</p><p>screen.bgcolor("white") </p><p><br/></p><p>t = turtle.Turtle()</p><p>t.speed(3) </p><p><br/></p><p>def draw_microscope():</p><p>    t.penup()</p><p>    t.setposition(-50, -100)</p><p>    t.pendown()</p><p>    t.color("black")</p><p>    </p><p><br/></p><p>    t.begin_fill()</p><p>    for _ in range(2):</p><p>        t.forward(100)</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.setposition(-25, -100)</p><p>    t.pendown()</p><p>    t.color("gray")</p><p>    t.begin_fill()</p><p>    for _ in range(2):</p><p>        t.forward(50)</p><p>        t.left(90)</p><p>        t.forward(25)</p><p>        t.left(90)</p><p>    t.end_fill()</p><p><br/></p><p>    t.penup()</p><p>    t.setposition(0, 50)</p><p>    t.pendown()</p><p>    t.color("blue")</p><p>    t.begin_fill()</p><p>    <a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(30)  </p><p>    t.end_fill()</p><p><br/></p><p>draw_microscope()</p><p><br/></p><p>turtle.done()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:53:54 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940799</guid>
      </item>
      <item>
         <title>10703 김민솔</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940938</link>
         <description><![CDATA[<p>import turtle</p><p>def dna():</p><p>    t = turtle.Turtle()</p><p>    t.speed(5)  </p><p>    </p><p>   </p><p>    for i in range(10):</p><p>       </p><p>        t.penup()</p><p>        t.goto(-200 + i * 40, 30) </p><p>        t.pendown()</p><p>        <a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(10)</p><p>        </p><p>        t.penup()</p><p>        t.goto(-200 + i * 40, -30)  </p><p>        t.pendown()</p><p>        <a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(10)</p><p>        </p><p>       </p><p>        t.penup()</p><p>        t.goto(-200 + i * 40, 30)</p><p>        t.pendown()</p><p>        t.goto(-200 + i * 40, -30)</p><p>    </p><p>    t.hideturtle()</p><p>    </p><p>dna()</p><p>import turtle</p><p>import math</p><p>def wave():</p><p>    t = turtle.Turtle()</p><p>    t.speed(5)</p><p>    t.penup()</p><p>    t.goto(-300, 0) </p><p>    t.pendown()</p><p>    </p><p>    t.color("blue")</p><p>    for x in range(-300, 300, 10): </p><p>        y = 50 * math.sin(math.radians(x))  </p><p>        t.goto(x, y)</p><p>    </p><p>    t.hideturtle()</p><p>    turtle.done()</p><p>wave()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:54:07 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278940938</guid>
      </item>
      <item>
         <title>10720 신동욱 f(x)=x^2+1</title>
         <author>janggoks240485</author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941036</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</p><p>t.shape('turtle')</p><p>def f(x):</p><p>    return x**2+1</p><p>t.goto(200,0)</p><p>t.goto(-200,0)</p><p>t.goto(0,0)</p><p>t.goto(0,200)</p><p>t.goto(0,-200)</p><p>t.goto(0,0)</p><p>t.penup()</p><p>t.goto(-150,int(0.01*f(-150)))</p><p>t.pendown()</p><p>for x in range(-150,151,1):</p><p>    t.goto(x, int(0.01*f(x)))</p><p><br></p><p>from turtle import *</p><p>import math</p><p>a=int(input('x^2의계수를 입력하세요 : '))</p><p>b=int(input('x의 계수를 입력하세요 : '))</p><p>c=int(input('상수항을 입력하세요 : '))</p><p>d=b**2-4*a*c</p><p>if d&gt;0:</p><p>    x1=((-b+math.sqrt(d)/2*a))</p><p>    x2=((-b-math.sqrt(d)/2*a))</p><p>    print('첫번째 근 : ',x1)</p><p>    print('두번째 근 : ',x2)</p><p>    print('첫번째 근 : ','(',-b,'+','√'d,') ,'/',2*a)</p><p>    print('두번째 근 : ','(',-b,'-','√'d,') ,'/',2*a)</p><p>if d&lt;0:</p><p>    x1=((-b+math.sqrt(-d)/2*a))</p><p>    x2=((-b-math.sqrt(-d)/2*a))</p><p>    print('첫번째 근 : ',x1)</p><p>    print('두번째 근 : ',x2)</p><p>    print('첫번째 근 : ','(',-b,'+','√'d,'i',')','/',2*a)</p><p>    print('두번째 근 : ','(',-b,'-','√'d,'i',')','/',2*a)</p><p>if d=0:</p><p>    x1=(-b)/2*a</p><p>    print('중근 :',x1)</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.penup</p><p>o.hideturtle()</p><p>o.goto(0,0)</p><p>o.write('0')</p><p>pen=Turtle()</p><p>pen.penup()</p><p>pen.goto(-50,0)</p><p>pen.pensize(1)</p><p>xcor=-50</p><p>while xcor&lt;=50:</p><p>    ycor=(a*(xcor**2))+(b*xcor)+c</p><p>    pen.goto(xcor, ycor)</p><p>    pen.pendown()</p><p>    xcor +=0.5</p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:54:16 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941036</guid>
      </item>
      <item>
         <title>10713 모하은</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941306</link>
         <description><![CDATA[<p>import turtle def draw_rectangle(x, y, width, height, color): t.penup() t.goto(x, y) t.pendown() t.begin_fill() t.fillcolor(color) for <em> in range(2): t.forward(width) t.right(90) t.forward(height) t.right(90) t.end</em>fill() def draw_line(x, y, length, angle): t.penup() t.goto(x, y) t.setheading(angle) t.pendown() t.forward(length) t = turtle.Turtle() t.speed(3) draw_rectangle(-30, 100, 60, 200, "lightgray") draw_rectangle(-10, 300, 20, 40, "gray") draw_rectangle(-25, 150, 50, 120, "blue") draw_rectangle(-70, 310, 140, 10, "darkgray") draw_rectangle(-5, -100, 10, 100, "silver") draw_line(0, -100, 20, -90) t.hideturtle() turtle.done()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:54:46 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941306</guid>
      </item>
      <item>
         <title>10718 박지현</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941480</link>
         <description><![CDATA[<p>#임포트 세팅</p><p>from turtle import *</p><p>import math</p><p>#입력</p><p>a=int(input('x^2의 계수를 입력하세요 : '))</p><p>b=int(input('x의 계수를 입력하세요 : '))</p><p>c=int(input('상수항을 입력하세요 : '))</p><p>color=int(input('색상을 입력하세요(영어) :'))</p><p>#판별식</p><p>d=b**2-4*a*c</p><p>#판별식 &gt;0 -서로 다른 두 실근</p><p>if d&gt;0:</p><p>    x1=((-b+math.sqrt(d))/2*a)</p><p>    x2=((-b-math.sqrt(d))/2*a)</p><p>    print('첫번째 근 :',x1)</p><p>    print('두번째 근 :',x2)</p><p>    print('첫번쨰 근','(',-d,'+','루트',d,'i',')','/',2*a)</p><p>    print('첫번쨰 근','(',-d,'+','루트',d,'i',')','/',2*a)</p><p>#판별식 =0-중근</p><p>if d==0:</p><p>    x1=(-b)/2*a</p><p>    print('중근 : ',x1)</p><p>#판별식 &lt;0-허근</p><p>if d==0:</p><p>    x1r=((-b+math.sqrt(-d))/2*a)</p><p>    x2r=((-b-math.sqrt(-d))/2*a)</p><p>    print('첫번째 근 :',x1r)</p><p>    print('두번째 근 :',x2r)</p><p>    print('첫번쨰 근','(',-d,'+','루트',d,'i',')','/',2*a)</p><p>    print('첫번쨰 근','(',-d,'+','루트',d,'i',')','/',2*a)</p><p>#타이틀</p><p>print('이차함수 그리기')</p><p>#y축</p><p>y=Turtle()</p><p>y.shape(tirtle)</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축</p><p>x=Turtle()</p><p>x.shape(tirtle)</p><p>x.goto(-200,0)</p><p>x.goto(200,0)</p><p>x.setheading(90)</p><p>x.write('x')</p><p>#원점</p><p>o=Turtle()</p><p>o.shape(tirtle)</p><p>o.penup()</p><p>o.hideturtle()</p><p>o.goto(0,0)</p><p>o.write('o')</p><p>#그래프</p><p>pen=Turtle()</p><p>pen.pencolor(color)</p><p>pen.shape(tirtle)</p><p>pen.speed(5)</p><p>pen.penup()</p><p>pen.goto(-50,0)</p><p>pen.pensize(1)</p><p>#초기x값 설정</p><p>xcor=-50</p><p>#그래프 그리기</p><p>while xcor&lt;=50:</p><p>    ycor=(a*(xcor**2)+(b*xcor)+c)</p><p>    pen.goto(xcor,ycor)</p><p>    pen.pendown()</p><p>    xcor+=0.5</p><p>    pen.write(f'{a}x^2+{b}x+c')</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:55:08 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941480</guid>
      </item>
      <item>
         <title>10705 김민찬</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941495</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Pen()</p><p>t.color('blue')</p><p>t.speed(10)</p><p>t.pendown()</p><p>t.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(80)</p><p>t.end_fill()</p><p>t.up()</p><p>t.forward(150)</p><p>t.down()</p><p>t.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(80)</p><p>t.end_fill()</p><p>t.up()</p><p>t.forward(150)</p><p>t.down()</p><p>t.begin_fill()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(80)</p><p>t.end_fill()</p><p>t.up()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:55:10 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941495</guid>
      </item>
      <item>
         <title>10719 신경섭</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941786</link>
         <description><![CDATA[<p>import turtle # 화면 설정 turtle.bgcolor("black") # 배경색을 검은색으로 설정 turtle.speed(3) # 그리기 속도 설정 # 로봇 몸체 def draw_body(): turtle.penup() turtle.goto(-50, -100) turtle.pendown() turtle.color("gray") turtle.begin_fill() turtle.forward(100) # 몸체 너비 turtle.left(90) turtle.forward(150) # 몸체 높이 turtle.left(90) turtle.forward(100) # 몸체 너비 turtle.left(90) turtle.forward(150) # 몸체 높이 turtle.end_fill() # 로봇 얼굴 def draw_face(): turtle.penup() turtle.goto(-30, 0) turtle.pendown() turtle.color("lightblue") turtle.begin_fill() <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(30) # 얼굴 크기 turtle.end_fill() # 눈 turtle.penup() turtle.goto(-20, 10) turtle.pendown() turtle.color("white") turtle.begin_fill() <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(5) # 왼쪽 눈 turtle.end_fill() turtle.penup() turtle.goto(10, 10) turtle.pendown() turtle.begin_fill() <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(5) # 오른쪽 눈 turtle.end_fill() # 입 turtle.penup() turtle.goto(-15, -5) turtle.pendown() turtle.color("black") turtle.setheading(-60) # 입 모양 각도 <a rel="noopener noreferrer nofollow" href="http://turtle.circle">turtle.circle</a>(15, 120) # 입 그리기 # 로봇 그리기 draw_body() draw_face() # 완료 후 대기 turtle.hideturtle() # 거북이 숨기기 turtle.done() # 그리기 완료</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:55:39 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941786</guid>
      </item>
      <item>
         <title>10711나현우</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941816</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Pen()</p><p>t.screen.bgcolor('orange')</p><p>t.color('red')</p><p>t.shape('classic')</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p>t.forward(100)</p><p>t.left(90)</p><p><br/></p><p>t.forward(99)</p><p>t.left(90)</p><p>t.forward(99)</p><p>t.left(90)</p><p>t.forward(98)</p><p>t.left(90)</p><p><br/></p><p>t.forward(98)</p><p>t.left(90)</p><p>t.forward(98)</p><p>t.left(90)</p><p>의료나 보건 학과를 가고 싶어서 피부색과 유사한 주황색을 바탕화면으로, 예리한 나이프를 표현하기 위한 작고 얇은 커서인 클래식 커서, 피부를 절개하면 나오는 피를 커서 색상을 빨간색으로 설정하여 표현하였다.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:55:42 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941816</guid>
      </item>
      <item>
         <title>10727 천다솔</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941951</link>
         <description><![CDATA[<p>import turtle</p><p>import turtle as t</p><p>t.forward(100)</p><p>t.left(144)</p><p>t.forward(100)</p><p>t.left(144)</p><p>t.forward(100)</p><p>t.left(144)</p><p>t.forward(100)</p><p>t.left(144)</p><p>t.forward(100)</p><p>t.left(144)</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:56:01 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941951</guid>
      </item>
      <item>
         <title>10712 노현창</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941978</link>
         <description><![CDATA[<p>함수 계산</p><p>'''import turtle</p><p>t=turtle.Turtle()</p><p>t.shape('turtle')</p><p>def f(x):</p><p>    return x**2+1</p><p>t.goto(200,0)</p><p>t.goto(0,0)</p><p>t.goto(0,200)</p><p>t.goto(0,0)</p><p>for x in range(150):</p><p>    t.goto(x, int(0.01*f(x)))'''</p><p>from turtle import *</p><p>import math</p><p>a=int(input('x^2의 계수를 입력하세요 : '))</p><p>b=int(input('x의 계수를 입력하세요 : '))</p><p>c=int(input('상수항을 입력하세요 : '))</p><p>d=(b**2)-4*a*c</p><p>if d&gt;0:</p><p>    x1=((-b+math.sqrt(d))/2*a)</p><p>    x2=((-b-math.sqrt(d))/2*a)</p><p>    print('첫번째 근 :', x1)</p><p>    print('두번째 근 :', x2)</p><p>    print('첫번째 근 :', '(', -b, '+', '√', d, 'i',')', '/', 2*a)</p><p>    print('두번째 근 :', '(', -b, '-', '√', d, 'i',')', '/', 2*a)</p><p>if d==0:</p><p>    x1=(-b)/2*a</p><p>    print('중근 :', x1)</p><p>if d&lt;0:</p><p>    x1r=((-b+math.sqrt(-d))/2*a)</p><p>    x2r=((-b-math.sqrt(-d))/2*a)</p><p>    print('첫번째 근 :', x1r, 'i')</p><p>    print('두번째 근 :', x2r, 'i')</p><p>    print('첫번째 근 :', '(', -b, '+', '√', d, 'i',')', '/', 2*a)</p><p>    print('두번째 근 :', '(', -b, '-', '√', d, 'i',')', '/', 2*a)</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(-200,0)</p><p>x.goto(200,0)</p><p>x.write('x')</p><p>o=Turtle()</p><p>o.penup()</p><p>o.hideturtle()</p><p>o.goto(0,0)</p><p>o.write('0')</p><p>pen=Turtle()</p><p>pen.penup()</p><p>pen.goto(-50,0)</p><p>pen.pensize(1)</p><p>int(xcor)==-50</p><p>while xcor &lt;= 50:</p><p>    ycor=(a*(xcor**2))+(b*xcor)+c</p><p>    pen.goto(xcor,ycor)</p><p>    pen.pendown()</p><p>    xcor==0.5</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:56:06 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278941978</guid>
      </item>
      <item>
         <title>10715박민호</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278942806</link>
         <description><![CDATA[<p>import turtle</p><p>t = turtle.Turtle()</p><p>t.penup()</p><p>t.forward(120)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(100)</p><p>t.penup()</p><p>t.backward(160)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(100)</p><p>t.penup()</p><p>t.right(90)</p><p>t.forward(100)</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(140)</p><p>t.right(90)</p><p>t.forward(100)</p><p><br/></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 00:57:34 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278942806</guid>
      </item>
      <item>
         <title>10717박준성</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278944607</link>
         <description><![CDATA[<p>import turtle as t</p><p>t.shape('turtle')</p><p>t.bgcolor('black')</p><p>t.pencolor('white')</p><p>t.speed(10)</p><p>t.forward(20)</p><p>t.left(60)</p><p>t.forward(15)</p><p>t.left(300)</p><p>t.forward(15)</p><p>t.left(180)</p><p>t.forward(15)</p><p>t.left(60)</p><p>t.forward(15)</p><p>t.left(60)</p><p>t.forward(15)</p><p>t.left(60)</p><p>t.forward(15)</p><p>t.left(180)</p><p>t.forward(15)</p><p>t.left(300)</p><p>t.forward(15)</p><p>t.left(240)</p><p>t.shape('turtle')</p><p>t.bgcolor('black')</p><p>t.pencolor('white')</p><p>t.forward(25)</p><p>t.left(60)</p><p>t.forward(20)</p><p>t.left(300)</p><p>t.forward(20)</p><p>t.left(180)</p><p>t.forward(20)</p><p>t.left(60)</p><p>t.forward(20)</p><p>t.left(60)</p><p>t.forward(20)</p><p>t.left(60)</p><p>t.forward(20)</p><p>t.left(180)</p><p>t.forward(20)</p><p>t.left(300)</p><p>t.forward(20)</p><p>t.left(240)</p><p>t.shape('turtle')</p><p>t.bgcolor('black')</p><p>t.pencolor('white')</p><p>t.forward(30)</p><p>t.left(60)</p><p>t.forward(25)</p><p>t.left(300)</p><p>t.forward(25)</p><p>t.left(180)</p><p>t.forward(25)</p><p>t.left(60)</p><p>t.forward(25)</p><p>t.left(60)</p><p>t.forward(25)</p><p>t.left(60)</p><p>t.forward(25)</p><p>t.left(180)</p><p>t.forward(25)</p><p>t.left(300)</p><p>t.forward(25)</p><p>t.left(240)</p><p>t.shape('turtle')</p><p>t.bgcolor('black')</p><p>t.pencolor('white')</p><p>t.forward(35)</p><p>t.left(60)</p><p>t.forward(30)</p><p>t.left(300)</p><p>t.forward(30)</p><p>t.left(180)</p><p>t.forward(30)</p><p>t.left(60)</p><p>t.forward(30)</p><p>t.left(60)</p><p>t.forward(30)</p><p>t.left(60)</p><p>t.forward(30)</p><p>t.left(180)</p><p>t.forward(30)</p><p>t.left(300)</p><p>t.forward(30)</p><p>t.left(240)</p><p>t.shape('turtle')</p><p>t.bgcolor('black')</p><p>t.pencolor('white')</p><p>t.forward(35)</p><p>t.left(60)</p><p>t.forward(40)</p><p>t.left(300)</p><p>t.forward(40)</p><p>t.left(300)</p><p>t.forward(40)</p><p>t.left(300)</p><p>t.forward(40)</p><p>t.left(300)</p><p>t.forward(40)</p><p>t.left(300)</p><p>t.forward(40)</p><p>t.left(60)</p><p>t.forward(135)</p><p>t.left(240)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-03 01:00:47 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3278944607</guid>
      </item>
      <item>
         <title>10730 최예슬</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280497353</link>
         <description><![CDATA[<p>def draw_rectangle(width, height):</p><p>    """</p><p>    width: 가로 길이 (공연장의 폭)</p><p>    height: 세로 길이 (공연장의 높이)</p><p>    """</p><p>    for _ in range(height):</p><p>        print("#" * width)  # 가로 길이에 맞게 #을 출력</p><p># 사용자 입력 받기</p><p>try:</p><p>    print("직사각형 공연장 크기를 입력하세요.")</p><p>    width = int(input("가로 길이 (숫자): "))</p><p>    height = int(input("세로 길이 (숫자): "))</p><p>    if width &lt;= 0 or height &lt;= 0:</p><p>        print("가로와 세로 길이는 양의 정수여야 합니다.")</p><p>    else:</p><p>        print("\n직사각형 공연장 모양:")</p><p>        draw_rectangle(width, height)</p><p>except ValueError:</p><p>    print("숫자만 입력해주세요!")</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3234886839/23253102ecb59b8cc47011d018a435be/10730____.png" />
         <pubDate>2025-01-06 03:20:40 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280497353</guid>
      </item>
      <item>
         <title>10713 모하은</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280510865</link>
         <description><![CDATA[<p>import turtle</p><p>screen = turtle.Screen()</p><p>screen.bgcolor("white")</p><p>bottle = turtle.Turtle()</p><p>bottle.speed(5)</p><p>def draw_bottle_body():</p><p>    bottle.penup()</p><p>    bottle.goto(-50, -100)</p><p>    bottle.pendown()</p><p>    bottle.begin_fill()</p><p>    bottle.color("lightblue")</p><p>    for _ in range(2):</p><p>        bottle.forward(100)  </p><p>        bottle.left(90)</p><p>        bottle.forward(200) </p><p>        bottle.left(90)</p><p>    bottle.end_fill()</p><p>def draw_cap():</p><p>    bottle.penup()</p><p>    bottle.goto(-50, 100)</p><p>    bottle.pendown()</p><p>    bottle.begin_fill()</p><p>    bottle.color("darkblue")</p><p>    for _ in range(2):</p><p>        bottle.forward(100)  </p><p>        bottle.left(90)</p><p>        bottle.forward(20)  </p><p>        bottle.left(90)</p><p>    bottle.end_fill()</p><p>def draw_label():</p><p>    bottle.penup()</p><p>    bottle.goto(-40, 20)</p><p>    bottle.pendown()</p><p>    bottle.color("white")</p><p>    bottle.begin_fill()</p><p>    for _ in range(2):</p><p>        bottle.forward(80)  </p><p>        bottle.left(90)</p><p>        bottle.forward(50)</p><p>        bottle.left(90)</p><p>    bottle.end_fill()</p><p>def draw_bottle():</p><p>    draw_bottle_body()</p><p>    draw_cap()</p><p>    draw_label()</p><p>def draw_small_circle():</p><p>    bottle.penup()</p><p>    bottle.goto(150, 0)  </p><p>    bottle.pendown()</p><p>    bottle.begin_fill()</p><p>    bottle.color("blue")  </p><p>    <a rel="noopener noreferrer nofollow" href="http://bottle.circle">bottle.circle</a>(30) </p><p>    bottle.end_fill()</p><p>draw_bottle() </p><p>draw_small_circle() </p><p>screen.exitonclick()</p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3234887160/b43a592d8c62c71f9d10d97b17c7ab53/10713____.png" />
         <pubDate>2025-01-06 03:35:09 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280510865</guid>
      </item>
      <item>
         <title>10710김태현</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280512330</link>
         <description><![CDATA[<p>import turtle</p><p>screen = turtle.Screen()</p><p>screen.setup(800, 600)</p><p>screen.bgcolor("white")</p><p>pen = turtle.Turtle()</p><p>pen.speed(5) </p><p>def draw_circle(radius, color, x, y):</p><p>    pen.penup()</p><p>    pen.goto(x, y - radius)</p><p>    pen.pendown()</p><p>    pen.begin_fill()</p><p>    pen.color(color)</p><p>    <a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(radius)</p><p>    pen.end_fill()</p><p>def draw_continents():</p><p>    pen.penup()</p><p>    pen.goto(-50, 50)</p><p>    pen.pendown()</p><p>    pen.begin_fill()</p><p>    pen.color("green")</p><p>    <a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(30)</p><p>    pen.end_fill()</p><p>    pen.penup()</p><p>    pen.goto(80, -100)</p><p>    pen.pendown()</p><p>    pen.begin_fill()</p><p>    pen.color("green")</p><p>    <a rel="noopener noreferrer nofollow" href="http://pen.circle">pen.circle</a>(40)</p><p>    pen.end_fill()</p><p>def draw_earth():</p><p>    radius = 150</p><p>    draw_circle(radius, "blue", 0, 0)</p><p>    </p><p>    draw_continents()</p><p> </p><p>    pen.hideturtle()</p><p>draw_earth()</p><p>screen.exitonclick()</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-06 03:36:52 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280512330</guid>
      </item>
      <item>
         <title>10722신혜원</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280516178</link>
         <description><![CDATA[<p>import turtle</p><p><br/></p><p>t=turtle.Turtle()</p><p>t.shape('turtle')</p><p>radius = int(input('원의 반지름을 입력하세요 :'))</p><p><br/></p><p>t.color('yellow')</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><br/></p><p>turtle.exitonclick()</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-06 03:41:26 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280516178</guid>
      </item>
      <item>
         <title>10708 김지연</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280524348</link>
         <description><![CDATA[<p>#임포트 세팅</p><p>from turtle import *</p><p>import math</p><p># 1. 일단 x^2의 계수, x의 계수, 상수항을 입력받는다.</p><p>#입력 </p><p>a = int(input("x^2의 계수를 입력하세요 :  "))</p><p>b = int(input("x의 계수를 입력하세요 :  "))</p><p>c = int(input("상수항을 입력하세요 :  "))</p><p># 2. x, y축 원점을 그린다.</p><p>#y축   </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축</p><p>x = Turtle()</p><p>x.goto(-200, 0)</p><p>x.goto(200, 0)</p><p>x.write("x")</p><p>#원점</p><p>o = Turtle()</p><p>o.penup()</p><p>o.hideturtle()</p><p>o.goto(0, 0)</p><p>o.write("O")</p><p># 3. x값의 범위를 설정하고, 맨 끝 범위의 맞는 좌표로 보낸다.</p><p>#초기 x값 설정</p><p>xcor = -50</p><p>ycor = (a*(xcor**2)) + (b*xcor) + c</p><p>#그래프</p><p>pen = Turtle()</p><p>pen.pensize(1)</p><p>pen.penup()</p><p>pen.goto(xcor, ycor )</p><p>pen.pendown()</p><p># 4. x값을 변화시키면서 (x, y)의 좌표로 터틀을 보낸다.</p><p>#그래프 그리기</p><p>while xcor&lt;=50:</p><p>    ycor = (a*(xcor**2)) + (b*xcor) + c</p><p>    pen.goto(xcor, ycor)</p><p>    xcor += 0.5</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-06 03:50:25 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280524348</guid>
      </item>
      <item>
         <title>10725 임단비</title>
         <author></author>
         <link>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280528646</link>
         <description><![CDATA[<p>import turtle</p><p>t=turtle.Turtle()</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)</p><p>#눈</p><p>t.penup()</p><p>t.goto(-35, 30)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(10)</p><p>t.penup()</p><p>t.goto(35, 30)</p><p>t.pendown()</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(10)</p><p>#입</p><p>t.penup()</p><p>t.goto(-40, -20)</p><p>t.pendown()</p><p>t.right(90)</p><p><a rel="noopener noreferrer nofollow" href="http://t.circle">t.circle</a>(40, 180)</p><p>t.hideturtle()</p><p>turtle.done()</p><p><br/></p><p>진로가 메이크업 쪽이라서 사람 얼굴을 그려 표현해보았디.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-01-06 03:54:58 UTC</pubDate>
         <guid>https://padlet.com/janggokhighschool1/u1nirdktfgon2r1p/wish/3280528646</guid>
      </item>
   </channel>
</rss>
