거북이 라이브러리를 사용하면 Python으로 웃는 얼굴을 그릴 수 있습니다.
1. idel을 열고 idel을 통해 새 py 파일을 생성한 후 빈 파일에 다음 코드를 입력하고 F5를 눌러 파일을 실행하면 웃는 얼굴을 그릴 수 있습니다.
from turtle import * screensize(600,600) speed(10) #笑脸的小圆脸 pensize(5) color('dim grey','yellow') pu() goto(0,-100) begin_fill() circle(100) end_fill() #腮红 #左侧 seth(90) color('Light Pink','Light Pink') pu() goto(-55,-5) pd() begin_fill() circle(20) end_fill() #右侧 color('Light Pink','Light Pink') pu() goto(55,-5) pd() begin_fill() circle(-20) end_fill() #笑脸的眼睛 #左眼 color('dim grey','white') pu() goto(-10,22) pd() begin_fill() circle(25) end_fill() #左瞳 color('dim grey','dim grey') pu() goto(-10,22) seth(90) pd() begin_fill() circle(25,-180) end_fill() #右眼 color('dim grey','white') pu() goto(10,22) seth(90) pd() begin_fill() circle(-25) end_fill() #右瞳 color('dim grey','dim grey') pu() goto(10,22) seth(90) pd() begin_fill() circle(-25,-180) end_fill() #笑脸的嘴巴 #左 pu() goto(-4,-43) seth(80) pd() circle(16,-200) #右 pu() goto(4,-43) seth(110) pd() circle(-16,-185) #连接 pu() goto(4,-43) seth(90) pd() circle(4,180) hideturtle()
2. 실행 결과는 다음과 같습니다.
더 많은 Python 관련 기술 기사를 보려면 Python Tutorial 칼럼을 방문하세요!
위 내용은 파이썬을 사용하여 웃는 얼굴을 그리는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!