2015年1月5日月曜日

開発環境

Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 6(Oh Oh: Objects and Classes)、Things to Do 6.1.を解いてみる。

Things to Do 6.1.

コード(BBEdit)

sample1.py

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

class Thing:
    pass

print(Thing)

example = Thing()
print(example)                  # different

入出力結果(Terminal, IPython)

$ ./sample1.py
<class '__main__.Thing'>
<__main__.Thing object at 0x10ffd0710>
$

0 コメント:

コメントを投稿