2015年1月7日水曜日

開発環境

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 コメント:

コメントを投稿