開発環境
- OS X El Capitan - Apple (OS)
- Emacs (Text Editor)
- Python 3.5 (プログラミング言語)
Think Python (Allen B. Downey (著)、 O'Reilly Media)のChapter 4.(Case Study: Interface Design)のExercises 4-3(No. 867)を取り組んでみる。
Exercises 4-3(No. 867)
コード(Emacs)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import turtle
def polygon(t, length, n):
angle = 360 / n
for _ in range(n):
t.fd(length)
t.lt(angle)
if __name__ == '__main__':
bob = turtle.Turtle()
polygon(bob, 100, 10)
turtle.mainloop()
入出力結果(Terminal, IPython)
$ ./sample3.py $
0 コメント:
コメントを投稿