Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 10 for stuff (0.019 sec.)
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 13872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mpact 引数が追加されました。 >>> import pprint >>> stuff = [ 'spam' , 'eggs' , 'lumberjack' , 'knights' , ' ... ni' ] >>> stuff . insert ( 0 , stuff [:]) >>> pp = pprint . Pretty ... Printer ( indent = 4 ) >>> pp . pprint ( stuff ) [ ['spam', 'eggs', 'lumberjack', 'knights', 'ni' ... ( width = 41 , compact = True ) >>> pp . pprint ( stuff ) [['spam', 'eggs', 'lumberjack', 'knights', 'ni'] ...
https://man.plustar.jp/python/library/pprint.html - [similar]
9.1. numbers --- 数の抽象基底クラス — Python 3.6.5 ドキュメント 10190
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... stance ( other , MyIntegral ): return do_my_adding_stuff ( self , other ) elif isinstance ( other , OtherTy ... peIKnowAbout ): return do_my_other_adding_stuff ( self , other ) else : return NotImplemented def ... stance ( other , MyIntegral ): return do_my_adding_stuff ( other , self ) elif isinstance ( other , OtherTy ... peIKnowAbout ): return do_my_other_adding_stuff ( other , self ) elif isinstance ( other , Integra ...
https://man.plustar.jp/python/library/numbers.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 8974
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... のようなことを書けるようになりました。 *rest, a = stuff も出来ます。 rest オブジェクトは常に (空かもしれな ... ます。 Dictionary comprehensions: {k: v for k, v in stuff} means the same thing as dict(stuff) but is more f ... トの内包表記もサポートされました。例えば {x for x in stuff} は set(stuff) と同じ意味ですが、より柔軟です。 新 ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 8420
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... elf ): ... self . data = [] ... def write ( self , stuff ): ... self . data . append ( stuff ) ... >>> impo ...
https://man.plustar.jp/python/faq/extending.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 8295
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ックスシュガーになります: def f (): with cm (): # Do stuff ContextDecorator を使うと代わりに次のように書けます ... : @cm () def f (): # Do stuff デコレーターを使うと、 cm が関数の一部ではなく全体 ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 8152
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... open ( 'foo' , 'w' ) as h : ... h . write ( 'some stuff' ) ... >>> m . mock_calls [call('foo', 'w'), call( ... ).__enter__(), call().write('some stuff'), call().__exit__(None, None, None)] >>> m . asse ... > handle . write . assert_called_once_with ( 'some stuff' ) ファイルの読み込みをモックする例: >>> with patc ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 7883
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... iternext ; /* Attribute descriptor and subclassing stuff */ struct PyMethodDef * tp_methods ; struct PyMemb ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7883
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... pletely, at the small cost of having slightly more stuff in the block's output. Dump the buffer near the en ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 7883
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... チン関数の例: async def func ( param1 , param2 ): do_stuff () await some_coroutine () 8.8.2. async for 文 ¶ a ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7740
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... iternext ; /* Attribute descriptor and subclassing stuff */ struct PyMethodDef * tp_methods ; struct PyMemb ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
PREV 1 NEXT