Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 156 for all (0.124 sec.)
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 2231 などのMIME関連のRFCに対応しています。 The overall structure of the email package can be divided into ... l object model is a tree structure of objects that all provide the EmailMessage API. The other two major ... iated policy object that controls its behavior. Usually an application only needs to specify the policy w ... the message is serialized using a generator . This allows, for example, a generic email message to be par ...
https://man.plustar.jp/python/library/email.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ロファイル結果を次のように表示します: 197 function calls ( 192 primitive calls ) in 0.002 seconds Ordered ... by : standard name ncalls tottime percall cumtime percall filename : lineno ... られたことを示します。列の見出しは以下を含みます: ncalls 呼び出し回数 tottime 与えられた関数に消費された合 ... の呼び出しで消費された時間は除外されています) percall tottime を ncalls で割った値 cumtime この関数と全て ...
https://man.plustar.jp/python/library/profile.html - [similar]
6.5. unicodedata --- Unicode データベース — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... abase (UCD) which defines character properties for all Unicode characters. The data contained in this dat ... る文字があります。たとえば、文字 U+00C7 (LATIN CAPITAL LETTER C WITH CEDILLA) は、U+0043 (LATIN CAPITAL LE ... 60 (ROMAN NUMERAL ONE) は事実上 U+0049 (LATIN CAPITAL LETTER I) と同じものです。しかし、Unicode では、既存 ... codedata . decimal ( 'a' ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Value ...
https://man.plustar.jp/python/library/unicodedata.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mation about its children, unless expandNode() is called. expandNode ( node ) ¶ node の全子ノードを node ... de ( node ) # Following statement prints node with all its children '<p>Some text <div>and more</div></p> ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ther async for clauses or await expressions it is called an asynchronous comprehension . An asynchronous ... で追加: Unpacking into dictionary displays, originally proposed by PEP 448 . 辞書内包表記は、リストや集合 ... 場合には、丸括弧を省略できます。詳しくは 呼び出し (call) 節を参照してください。 Since Python 3.6, if the g ... ther async for clauses or await expressions it is called an asynchronous generator expression . An asynch ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
10. 完全な文法仕様 — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... mar for Python # NOTE WELL: You should also follow all the steps listed at # https://devguide.python.org/ ... stmt : simple_stmt | compound_stmt simple_stmt : small_stmt ( ';' small_stmt ) * [ ';' ] NEWLINE small_st ... pt_clause ':' suite ) + [ 'else' ':' suite ] [ 'finally' ':' suite ] | 'finally' ':' suite )) with_stmt : ... omparison : expr ( comp_op expr ) * # <> isn't actually a valid comparison operator in Python. It's here ...
https://man.plustar.jp/python/reference/grammar.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ... a , b = b , a + b ... print () ... >>> # Now call the function we just defined: ... fib ( 2000 ) 0 1 ... 内に取り込まれます。そうすることで、引数は 値渡し (call by value) で関数に渡されることになります (ここでの ... b ... return result ... >>> f100 = fib2 ( 100 ) # call it >>> f100 # write the result [0, 1, 1, 2, 3, 5, ... 呼び出せます: 必須の引数のみ与える: ask_ok('Do you really want to quit?') 一つのオプション引数を与える: ask ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 5283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... の動作(ソース行ごとに1度警告を表示する)を要求する。 all 警告が発生するたびに表示する (これは、ループの中な ... rpreter. This only works on debug builds. -X tracemalloc は tracemalloc モジュールを用いて Python のメモリ ... ムのトレースバックで トレースを開始するには -X tracemalloc=NFRAME を使用してください。詳細は tracemalloc.st ... art() を参照してください。 -X showalloccount to output the total count of allocated obje ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
はじめに — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 、型オブジェクトです; 型オブジェクトはメモリ解放 (deallocate) してはならないので、通常は静的記憶の PyTypeO ... べて、なった場合にはオブジェクトのメモリ解放関数 (deallocator) を呼び出さなければならないからです。メモリ解 ... 素をリスト中の全ての要素の値にセットします: int set_all ( PyObject * target , PyObject * item ) { Py_ssize ... ( PyObject * dict , PyObject * key ) { /* Objects all initialized to NULL for Py_XDECREF */ PyObject * i ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
1. Distutilsの紹介 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... foo.py を含むアーカイブファイル (例。 Unix の tarball や Windows の ZIP ファイル) を作成します。アーカイ ... クトリに展開されます。 If an end-user wishes to install your foo module, all she has to do is download foo ... the foo-1.0 directory---run python setup . py install この操作を行うと、インストールされている Python で ... マンドは、ほぼ完全に開発者だけが対象となる一方、 install はどちらかというとインストール作業者向けです (とは ...
https://man.plustar.jp/python/distutils/introduction.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT