Skip to content

Instantly share code, notes, and snippets.

@pasali
Created February 25, 2011 23:14
Show Gist options
  • Save pasali/844697 to your computer and use it in GitHub Desktop.
Save pasali/844697 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from turtle import *
shape("turtle")
import time
color("Blue")
for i in range(4):
forward(200)
right(90)
up()
for e in range(2):
forward(20)
right(90)
left(90)
down()
for i in range(4):
forward(160)
left(90)
up()
right(135)
forward(14)
left(135)
a=input("tur sayısı:")
for i in range(4*a):
forward(180)
left(90)
time.sleep(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment