2017-03-08 7 views
-1

例としてdir(sys)を指定したときにリストされている項目の用語を知りたいと思います。Pythonの用語と使い方

これらのcall_tracingまたはcallstartsまたは著作権をどのように参照するかはより明確になります。彼らは「方法」と呼ばれるでしょうか?そのディレクトリリストにある各属性の使用状況をどのように知ることができますか?

>>>import sys 
>>>dir(sys) 

['__displayhook__', '__doc__', '__excepthook__', '__name__', '__package__', '__stderr__', '__stdin__', '__stdout__', '_clear_type_cache', '_current_frames', '_getframe', '_mercurial', 'api_version', 'argv', 'builtin_module_names', 'byteorder', 'call_tracing', 'callstats', 'copyright', 'displayhook', 'dllhandle', 'dont_write_bytecode', 'exc_clear', 'exc_info', 'exc_traceback', 'exc_type', 'exc_value', 'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info', 'float_repr_style', 'getcheckinterval', 'getdefaultencoding', 'getfilesystemencoding', 'getprofile', 'getrecursionlimit', 'getrefcount', 'getsizeof', 'gettrace', 'getwindowsversion', 'hexversion', 'last_traceback', 'last_type', 'last_value', 'long_info', 'maxint', 'maxsize', 'maxunicode', 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'py3kwarning', 'setcheckinterval', 'setprofile', 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout', 'subversion', 'version', 'version_info', 'warnoptions', 'winver'] 
+0

https://docs.python.org/2/library/ –

+0

「sys.call_tracing」、「sys.callstats」などの名前をシェルのリストに入力して、そのタイプを確認するのはなぜですか?それが関数ならば。 ''や ''のようなものが得られます – TidB

答えて

1

一般に、dir(...)コマンドは、クラスに存在するすべての属性のリストを表示します。例えばsysモジュールの属性は'__displayhook__', '__doc__', '__excepthook__', '__name__', etcです。

あなたの質問が正しく理解されている場合は、call_tracingcallstarts、およびcopyrightのメソッドを含むsysモジュールのメソッドとして、あなたのメソッドで呼び出されます。

クラスの各属性の使用方法については、そのモジュールのドキュメントを参照する必要があります。あなたが言及したsysモジュールはhereです。

dir()コマンドの詳細については、hereドキュメントを参照してください。

関連する問題