開発環境
- 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.3.を解いてみる。
Things to Do 6.3.
コード(BBEdit)
sample3.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Thing3:
def __init__(self):
self.letters = 'xyz'
t = Thing3()
print(t.letters)
入出力結果(Terminal, IPython)
$ ./sample3.py xyz $
0 コメント:
コメントを投稿