Created
September 27, 2018 14:09
-
-
Save johngrib/cae29caf18437b1b40d66263fea55db5 to your computer and use it in GitHub Desktop.
turtle 보여주기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import turtle as t | |
t.shape("turtle") # 이 부분 | |
t.fd(100) | |
t.lt(120) | |
t.fd(100) | |
t.lt(120) | |
t.fd(100) | |
t.left(120) | |
t.showturtle() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment