==[[Python help関数の使い方]]==
[[Python]] | [[言語まとめ Python]] |
>>> import fileinput
>>> help(fileinput)
[[Help ]] on module fileinput:
NAME
fileinput - Helper [[Help]]er class to quickly write a loop over all standard input fi
es.
=====例えば、文字列型のHELPを確認=====
>>>help(__builtins__.str)
[[Help ]] on class str in module __builtin__:
class str(basestring)
| str(object) -> string
|
| Return [[R]]eturn a nice string representation of the object.
| If the argument is a string, the return value is the same object.
|