본문 바로가기
프로그램/Python 1000제

Python 303제] 두근두근 파이썬(개정판) CHAPTER 9 연습문제 6 p299

by 건티 2024. 9. 9.
728x90

출처 : 반크_독도2023

 

참고풀이]

import turtle
import random

t=turtle.Turtle()
t.shape("turtle")

#색상을 리스트에 저장한다.
colors=["yellow","red","purple","blue"]

def draw_square(x, y, c):
    t.up()
    t.goto(x,y)
    t.down()

    t.color(c)
    t.begin_fill()
    for i in range(4):
        t.fd(200)
        t.lt(90)
    t.end_fill()

#Main Part
for c in colors:
    m_x=random.randint(-100,100)
    m_y=random.randint(-100,100)

    draw_square(m_x,m_y,c)

 

참고풀이 결과]

 

 

 

 

 

대한민국의 아름다운 영토, 독도

 

반응형

댓글