diff --git "a/\355\204\260\355\213\200\354\227\260\354\212\265(for\353\254\270\354\234\274\353\241\234 \354\202\254\352\260\201\355\230\225).py" "b/\355\204\260\355\213\200\354\227\260\354\212\265(for\353\254\270\354\234\274\353\241\234 \354\202\254\352\260\201\355\230\225).py" new file mode 100644 index 0000000000000000000000000000000000000000..398835e2f4a13d1beff18f31f4c5411565bf0da9 --- /dev/null +++ "b/\355\204\260\355\213\200\354\227\260\354\212\265(for\353\254\270\354\234\274\353\241\234 \354\202\254\352\260\201\355\230\225).py" @@ -0,0 +1,11 @@ +import turtle + +for i in range(10): + turtle.left(20) + turtle.forward(50) + turtle.left(90) + turtle.forward(50) + turtle.left(90) + turtle.forward(50) + turtle.left(90) + turtle.forward(50)