Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 33 for entry (0.044 sec.)
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 7764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を使ってください: >>> c [ 'sausage' ] = 0 # counter entry with a zero count >>> del c [ 'sausage' ] # del ac ... tually removes the entry バージョン 3.1 で追加. カウンタオブジェクトは、すべ ... upper ()) G H I >>> d . append ( 'j' ) # add a new entry to the right side >>> d . appendleft ( 'f' ) # add ... a new entry to the left side >>> d # show the representation o ...
https://man.plustar.jp/python/library/collections.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... basicConfig ( level = logging . INFO ) class track_entry_and_exit ( ContextDecorator ): def __init__ ( self ... コンテキストマネージャーとしても利用でき: with track_entry_and_exit ( 'widget loader' ): print ( 'Some time c ... ) また関数デコレーターとしても利用できます: @track_entry_and_exit ( 'widget loader' ) def activity (): prin ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 7764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。これにより下層のライブラリーの replace_history_entry() が呼ばれます。 readline. add_history ( line ) ¶ ... The installed completer function is invoked by the entry_func callback passed to rl_completion_matches() in ...
https://man.plustar.jp/python/library/readline.html - [similar]
31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 7764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e supplied path is a reference to a valid sys.path entry, then __spec__ will be set appropriately for the i ... e where __main__ is imported from a valid sys.path entry rather than being executed directly. 参考 PEP 338 ...
https://man.plustar.jp/python/library/runpy.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... すべてのファイル (ディレクトリを除く) を表示します。 entry.is_file() を呼び出しても、通常は追加のシステムコー ... ルは行われません: for entry in os . scandir ( path ): if not entry . name . st ... artswith ( '.' ) and entry . is_file (): print ( entry . name ) 参考 PEP 471 ... new scandir() function returning an iterator of DirEntry objects has been added. If possible, scandir() ext ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7604
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ートされています。 IMAP4. getannotation ( mailbox , entry , attribute ) ¶ mailbox に対する ANNOTATION を取得 ... ートされています。 IMAP4. setannotation ( mailbox , entry , attribute [ , ... ] ) ¶ ANNOTATION を mailbox に ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 7604
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... plit 引数を使います。 : >>> [ re . split ( ":? " , entry , 3 ) for entry in entries ] [['Ross', 'McFluff', ... 割することができます。 : >>> [ re . split ( ":? " , entry , 4 ) for entry in entries ] [['Ross', 'McFluff', ...
https://man.plustar.jp/python/library/re.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 7604
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... per () . __init__ ( master ) self . pack () self . entrythingy = Entry () self . entrythingy . pack () # he ... contents . set ( "this is a variable" ) # tell the entry widget to watch this variable self . entrythingy [ ... lication variable when the user hits return self . entrythingy . bind ( '<Key-Return>' , self . print_conte ... ontents ( self , event ): print ( "hi. contents of entry is now ---->" , self . contents . get ()) 25.1.6.5 ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 7524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nder ( deprecated ) | +-- MetaPathFinder | +-- PathEntryFinder +-- Loader +-- ResourceLoader --------+ +-- ... ン 3.3 で非推奨: 代わりに MetaPathFinder または PathEntryFinder を使ってください。 abstractmethod find_modul ... 代わりに None を返します。 class importlib.abc. PathEntryFinder ¶ パスエントリ・ファインダー を表す抽象基底ク ... MetaPathFinder と似ているところがありますが、 PathEntryFinder は PathFinder の与えるパスに基づくインポート ...
https://man.plustar.jp/python/library/importlib.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 7524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mpression parameter to the constructor for the new entry. The archive must be open with mode 'w' , 'x' or ' ... this archive member is a directory. This uses the entry's name: directories should always end with / . バー ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
PREV 1 2 3 4 NEXT