Skip to content

Commit

Permalink
Merge pull request #215 from zekuny/gh-pages
Browse files Browse the repository at this point in the history
Merge pull request #1 from silshack/gh-pages
  • Loading branch information
eah13 committed Sep 11, 2013
2 parents 5656830 + 20b8691 commit c28b9aa
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions _posts/2013-09-10-Assignment-Zekun.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: assignment
layout: post
author: zekuny
categories: post
---

Codes:

```python

from turtle import *
import time

color("green")

up()

goto(0,-50)

down()

circle(50)
up()

goto(0,0)
down()

color("blue")
for deg in range(0, 61, 6):
right(90 + deg)
forward(100)
right(90)
forward(100)
right(90)
forward(100)
right(90)
forward(100)

up()
goto(-150,-120)
color("red")
write("Done!")

time.sleep(10)
```

![Image](http://ww2.sinaimg.cn/mw1024/a5997331gw1e8htzmhg4dj20b70d9wfe.jpg)

0 comments on commit c28b9aa

Please sign in to comment.