20131016改訂中
第19章 pythonの奥座敷
1 dir() pythonが内部に記憶している内容を表示する。
>>> a=1,2,3 >>> a (1, 2, 3) >>> b='a' 'b' 'c' >>> b 'abc' >>> c=[1,2,3] >>> c [1, 2, 3]
>>> def total(x,y): t=x+y print(t)
>>> total(23,45) 68 >>> dir() ['__builtins__', '__doc__', '__name__', '__package__', 'a', 'b', 'c', 'total'] >>>
。 |