
02. Python-Programming(Introduction)(Turtle, List, Tuple, Dictionary, Set)
[toc] 파이썬(입문) 과제2 Turtle 거북이로 무작위 방향으로 그림을 그리는 UI 구현 #프로그램1 import turtle import random ## 전역 변수 선언 ## myTurtle, tX, tY, tColor, tSize, tShape = [None] * 6 shapeList = [] playerTurtles = [] sw...

