Skip to content

Instantly share code, notes, and snippets.

@Flature
Created June 14, 2019 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Flature/c56c1ebd5d6f230c73c254a89d3df6cb to your computer and use it in GitHub Desktop.
Save Flature/c56c1ebd5d6f230c73c254a89d3df6cb to your computer and use it in GitHub Desktop.
import turtle
t = turtle.Pen() # 여기서 Pen()의 앞글자는 대문자인 것을 유의
t.shape("turtle") # 꼭 필요한 메소드는 아니며, 커서를 화살표에서 거북이로 변경해주는 메소드
t.forward(70)
t.left(90)
t.forward(70)
t.left(90)
t.forward(70)
t.left(90)
t.forward(70)
t.left(90)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment