開発環境
- macOS Mojave - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Visual Studio Code (Text Editor)
- Python 3.7 (プログラミング言語)
Head First はじめてのプログラミング ―頭とからだで覚えるPythonプログラミング入門 (Eric Freeman(著)、嶋田 健志(監修)、木下 哲也(翻訳)、株式会社オライリー・ジャパン)を7章(モジュール、メソッド、クラス、オブジェクト - モジュール化する)の自分で考えてみよう(310ページ)の解答を求めてみる。
コード
Python 3
#!/usr/bin/env python3 import turtle def make_square(t: turtle.Turtle) -> None: for _ in range(4): t.forward(100) t.right(90) if __name__ == '__main__': slowpoke = turtle.Turtle() slowpoke.shape('turtle') make_square(slowpoke) turtle.mainloop()
入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
C:\Users\...>py sample1.py C:\Users\...>
0 コメント:
コメントを投稿