코드를 사용하여 Python에서 Google 로고 그리기
2519 단어 python
구글은 검색 엔진이고 파이썬으로 구글 로고를 그리는 것은 매우 흥미로울 것입니다. Google 로고 파이썬 코드를 제공하므로 아무 것도 하지 않아도 됩니다.
파이썬 거북이 라이브러리를 사용하여 Google 로고를 그립니다. 내장된 파이썬 라이브러리이므로 수동으로 설치할 필요가 없습니다. 이제 구글 로고 파이썬 코드를 보자.
그리기용 Google 로고 Python 코드
import turtle
#get the instance of turtle
t=turtle.Turtle()
#select color
t.color('#4285F4','#4285F4') ## RBG value of color
#change the pen size
t.pensize(5)
#change the drawing speed
t.speed(3)
t.forward(120)
t.right(90)
t.circle(-150,50) ## first circle for red color
t.color('#0F9D58')
t.circle(-150,100)
t.color('#F4B400')
t.circle(-150,60)
t.color('#DB4437','#DB4437')
t.begin_fill()
t.circle(-150,100)
t.right(90)
t.forward(50)
t.right(90)
t.circle(100,100)
t.right(90)
t.forward(50)
t.end_fill()
t.begin_fill()
## second circle for yellow color
t.color("#F4B400","#F4B400")
t.right(180)
t.forward(50)
t.right(90)
t.circle(100,60)
t.right(90)
t.forward(50)
t.right(90)
t.circle(-150,60)
t.end_fill()
# third circle of green color
t.right(90)
t.forward(50)
t.right(90)
t.circle(100,60)
t.color('#0F9D58','#0F9D58')
t.begin_fill()
t.circle(100,100)
t.right(90)
t.forward(50)
t.right(90)
t.circle(-150,100)
t.right(90)
t.forward(50)
t.end_fill()
##Draw last circle
t.right(90)
t.circle(100,100)
t.color('#4285F4','#4285F4')
t.begin_fill()
t.circle(100,25)
t.left(115)
t.forward(65)
t.right(90)
t.forward(42)
t.right(90)
t.forward(124)
t.right(90)
t.circle(-150,50)
t.right(90)
t.forward(50)
t.end_fill()
t.penup()
위는 파이썬에서 구글 로고를 그리는 코드입니다. python 파일에 복사하여 붙여넣고 컴퓨터에서 실행하거나 사용하세요. an online python compiler .
코드를 실행하면 새 창이 열리고 Google 로고 그리기가 시작되며 아래 그리기가 끝나면 결과를 얻을 수 있습니다.
올바르게 복사하여 붙여넣었다면 위의 코드가 Google 로고 그림이 되어야 합니다.
요약
이것은 파이썬 거북이에서 구글 로고를 그리는 짧은 튜토리얼이었습니다. 이 튜토리얼이 흥미롭고 도움이 되었기를 바랍니다.
찾고 있던 것을 찾으셨기를 바랍니다. 이 기사를 친구와 공유하고 이와 같은 튜토리얼을 더 원하면 저희Telegram channel에 가입하세요.
읽어주셔서 감사합니다 좋은 하루 되세요 🙂
Reference
이 문제에 관하여(코드를 사용하여 Python에서 Google 로고 그리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/coderhax/draw-google-logo-in-python-with-code-2506텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)