개발 꿀팁/PYTHON

파이썬 그림 애플릿입니다

Jammie 2022. 12. 15. 14:24
반응형

올림픽 오륜입니다

import turtle
t = turtle.Pen()
t.speed(1)
# 브러쉬 색상은 파란색입니다
t.pencolor("blue")
# 브러시의 너비는 8입니다.
t.pensize(8)
# 반지름이 60인 원, 바스켓을 그려주세요.
t.circle(60)
# 첫 번째 링입니다
t.penup()
t.goto(100,0)
t.pendown()
링의 색을 설정합니다
t.pencolor("black")
t.circle(60)
# 두 번째 고리입니다
t.penup()
t.goto(200,0)
t.pendown()
t.pencolor("red")
t.circle(60)
# 세 번째 고리입니다
t.penup()
t.goto(60,-70)
t.pendown()
t.pencolor("yellow")
t.circle(60)
# 네 번째 고리입니다
t.penup()
t.goto(150,-70)
t.pendown()
t.pencolor("green")
t.circle(60)

탕후루요

import turtle
t = turtle.Pen()
# 브러시 속도를 설정합니다.
t.speed(3)
# 빨간색 채우기를 시작합니다.
t.begin_fill()
# 채우기 색상은 빨간색으로 합니다
t.color("red")
# 반경이 50인 원을 그리세요.
t.circle(60)
t.end_fill()
# 파란색 동그라미가 있어요
t.penup()
t.goto(65,65)
t.pendown()
# 채우기 시작합니다
t.begin_fill()
# 채우기 색을 설정합니다
t.color("blue")
# 브러시 색상을 설정합니다.
t.pencolor("red")
t.circle(60)
t.end_fill()
# 노란색 동그라미가 있어요
t.penup()
t.goto(130,130)
t.pendown()
t.begin_fill()
t.color("yellow")
t.pencolor("red")
t.circle(60)
t.end_fill()
# 보라색 원이에요.
t.penup()
t.goto(195,195)
t.pendown()
t.begin_fill()
t.color("purple")
t.pencolor("red")
t.circle(60)
t.end_fill()
# 막대기요
t.penup()
# 막대 너비를 설정합니다
t.pensize(10)
# 막대기 색을 설정합니다.
t.pencolor("green")
# 막대 시작 좌표를 설정합니다
t.goto(240,280)
t.pendown()
# 막대 끝 좌표를 설정합니다
t.goto(-140,-90)

 

반응형