こもろぐ @tenkoma

What We Find Changes Who We Become -- Peter Morville著『アンビエント・ファインダビリティ 』

広告:本ブログで紹介している書籍等商品の紹介でAmazonアソシエイトを利用していることがあります。

プロンプトの改造(初めてのPython第二版 p.586)

import sys,os

class ps1:
    def __init__(self):
        self.line = -1
    def __repr__(self):
        self.line += 1
        return "current: %s, inputted line(s):%3d >>>" % (os.getcwd(),self.line)
sys.ps1 = ps1()