Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 274 for IN (0.081 sec.)
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 5968
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... (both the text content and the addresses may contain unicode characters): # Import smtplib for the actu ... al sending function import smtplib # Import the email module ... om email.message import EmailMessage # Open the plain text file whose name is in textfile for reading. w ... ith open ( textfile ) as fp : # Create a text/plain message msg = EmailMessage () msg . set_content ( ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 5968
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... parser.py Message object structures can be created in one of two ways: they can be created from whole cl ... oth by creating an EmailMessage object, adding headers using the ... dictionary interface, and adding payload(s) using set_content() ... and related methods, or they can be created by parsing a serialized representation of the email message. ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 5968
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... CPServer ( server_address , RequestHandlerClass , bind_and_activate=True ) ¶ This uses the Internet TCP ... protocol, which provides for continuous streams of data between the client and server. ... If bind_and_activate is true, the constructor automatical ... ly attempts to invoke server_bind() and server_activate() . The othe ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
10. 完全な文法仕様 — Python 3.6.5 ドキュメント 5939
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... n.org/grammar/ # Start symbols for the grammar: # single_input is a single interactive statement; # file ... _input is a module or sequence of commands read from a ... n input file; # eval_input is the input for the eval() ... functions. # NB: compound_stmt in single_input is followed by extra NEWLINE! single_ ...
https://man.plustar.jp/python/reference/grammar.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 5939
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New In Python 3.1 ¶ 著者: Raymond Hettinger この記事では ... ます。 参考 PEP 372 - 順序付き辞書 PEP written by Armin Ronacher and Raymond Hettinger. Implementation wri ... tten by Raymond Hettinger. PEP 378: 1000区切りのための書式指定子 ¶ 組み込 ... 9' ), ',f' ) '1,234,567.89' これをサポートする型は int , float , complex , decimal.Decimal です。 ドット ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 学習用環境です。 IDLE は次のような特徴があります: tkinter GUIツールキットを使って、100% ピュア Python でコ ... ーディングされています クロスプラットホーム: Windows, Unix, Mac OS X で動作します コード入力、出力、 ... に複数起動できます。ファイル内の編集 (Edit) / 検索 (Find) で使われるような出力ウィンドウ (Output ウィンドウ ... するファイルを変えずに異なるファイルに保存します。 Print Window [ウィンドウを印刷] 現在のウィンドウをデフォ ...
https://man.plustar.jp/python/library/idle.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 5890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コンテナデータ型 ¶ ソースコード: Lib/collections/__init__.py このモジュールは、汎用の Python 組み込みコン ... append や pop を高速に行えるリスト風のコンテナ ChainMap 複数のマッピングの一つのビューを作成する辞書風の ... ラス化を簡単にするリストオブジェクトのラッパ UserString 文字列のサブクラス化を簡単にする文字列オブジェクト ... は引き続きこのモジュールでも利用できます。 8.3.1. ChainMap オブジェクト ¶ バージョン 3.3 で追加. ChainMap ...
https://man.plustar.jp/python/library/collections.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5832
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _snapshot () top_stats = snapshot . statistics ( 'lineno' ) print ( "[ Top 10 ]" ) for stat in top_stats ... [: 10 ]: print ( stat ) Python テストスイートの出力例です: [ Top ... = 167 B / usr / lib / python3 .4 / collections / __init__ . py : 368 : size = 244 KiB , count = 2315 , a ... ze = 52.0 KiB , count = 25 , average = 2131 B < string > : 5 : size = 49.7 KiB , count = 148 , average = ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5803
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ing クックブック ¶ 著者: Vinay Sajip <vinay_sajip at red-dove dot com> このペー ... ジでは、過去に見つかった logging に関するいくつかの便利なレシピを紹介します。 複数 ... のモジュールで logging を使う ¶ logging.getLogger('someLogger') の複数回 ... 渡されます。まずはメインのモジュールです: import logging import auxiliary_module # create logger with 'spa ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 5715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... べる方法を提供します。 どちらもドメイン固有言語 (domain-specific language) を使用して、次のことができるスク ... には組み込みの DTrace サポートが備わっています。 Linux では SystemTap 用のマーカーを埋め込んで CPython ... ap 開発ツールをインストールしなければなりません。 Linux マシンでは、 SystemTap 開発ツールのインストールは ... 次のように行えます: $ yum install systemtap-sdt-devel もしくは: $ sudo apt-get ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT