2016年3月23日水曜日

開発環境

  • 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-1(No. 857)を取り組んでみる。

Exercises 4-1(No. 857)

コード(Emacs)

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import turtle

N = 100
def square(t):
    for _ in range(4):
        t.fd(N)
        t.lt(90)
        
if __name__ == '__main__':
    bob = turtle.Turtle()
    square(bob)
    turtle.mainloop()    

入出力結果(Terminal, IPython)

$ ./sample1.py
$

0 コメント:

コメントを投稿