開発環境
- OS X Yosemite - Apple (OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python 3.4 (プログラミング言語)
Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 6(Oh Oh: Objects and Classes)、Things to Do 6.2.を解いてみる。
Things to Do 6.2.
コード(BBEdit)
sample2.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Thing2:
letters = 'abc'
print(Thing2.letters)
入出力結果(Terminal, IPython)
$ ./sample2.py abc $
0 コメント:
コメントを投稿