Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 54 for re (0.019 sec.)
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7565
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... slie and Yury Selivanov in bpo-24450 .) 新たな例外 RecursionError が最長再帰深度に到達した際に送出される ... さい。) 標準ライブラリーの顕著な改善 collections.OrderedDict が C で実装されました 。 これにより 4 倍から ... f を用いて定義されます: >>> async def coro (): ... return 'spam' コルーチン関数内で、新たな await 式を用 ... です: import asyncio async def http_get ( domain ): reader , writer = await asyncio . open_connection ( d ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 7505
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... を提供しています: >>> import os >>> os . getcwd () # Return the current working directory 'C:\\Python36' > ... >> os . chdir ( '/server/accesslogs' ) # Change current working directory >>> os . system ( 'mkdir today ... 作上の助けになります: >>> import os >>> dir ( os ) <returns a list of all module functions> >>> help ( os ... ) <returns an extensive manual page created from the mod ...
https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7505
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... : 非同期内包表記 新たなライブラリーモジュール: secrets : PEP 506 -- 標準ライブラリーに Secrets モジュー ... 標準ライブラリーの顕著な改善 The asyncio module has received new features, significant usability and perf ... ule is no longer provisional and its API is considered stable. A new file system path protocol has been ... モリ割り当てエラーの診断プログラムの提供だけでなく、 ResourceWarning の出力メッセージも改善されています。 ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 7298
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... mid-1980s an Apple II BASIC program written by a French speaker might have lines like these: PRINT "MIS ... E A JOUR TERMINEE" PRINT "PARAMETRES ENREGISTRES" これらのメッセージはアクセントを含ん ... でいるはず (terminée, paramètre, enregists) で、フランス語が読める人にとっては単 ... Jukka Korpela has written an introductory guide to reading the Unicode character tables. また別の 良い入 ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 7194
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 別実装を書いてきました。その経験に基づき、新しい OrderedDict クラスが導入されました。 OrderedDict API は通 ... ようになりました。 json モジュールのデコーダーが OrderedDict をビルドするのをサポートするために、 JSONDeco ... されます。(Suggestion and initial patch by Andy Chu; revised patch by Phillip J. Eby and Nick Coghlan; bpo ... >>> ( n + 1 ) . bit_length () 124 (Contributed by Fredrik Johansson, Victor Stinner, Raymond Hettinger, ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
32.11. compileall --- Python ライブラリをバイトコンパイル — Python 3.6.5 ドキュ... 7149
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ソースをコンパイルするスクリプトとして機能します。 directory ... ¶ file ... ¶ 位置引数は、コンパイルするフ ... イル群を含むものです。引数が与えられなければ、 -l <directories from sys.path> を渡したのと同じように動作し ... れるバイトコードファイルにもコンパイルされます。 -x regex ¶ regex を使って、コンパイル候補のそれぞれのファ ... イルのフルパスを検索し、regex がマッチしたファイルを除外します。 -i list ¶ フ ...
https://man.plustar.jp/python/library/compileall.html - [similar]
7. バイナリデータ処理 — Python 3.6.5 ドキュメント 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... II 互換のバイナリフォーマットで利用できるもの (例: re ) や 、すべてのバイナリデータで利用できるもの (例: ... インクリメンタルなエンコードとデコード 7.2.1.3.1. IncrementalEncoder オブジェクト 7.2.1.3.2. IncrementalDe ... 1.4. ストリームのエンコードとデコード 7.2.1.4.1. StreamWriter オブジェクト 7.2.1.4.2. StreamReader オブジ ... ェクト 7.2.1.4.3. StreamReaderWriter オブジェクト 7.2.1.4.4. StreamRecode ...
https://man.plustar.jp/python/library/binary.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ィタウィンドウ内での置換、複数ファイルを跨いだ検索 (grep) 永続的なブレイクポイント、ステップ実行、グローバ ... ダイアログを使って既存のファイルをオープンします。 Recent Files [最近使ったファイル] 最近使ったファイルの ... 消し) します。最大で 1000 個の変更が Undo できます。 Redo [やり直し] 現在のウィンドウに対する最後にundoされ ... た変更をRedo(再スタート)します。 Cut [切り取り] システムのクリ ...
https://man.plustar.jp/python/library/idle.html - [similar]
6. テキスト処理サービス — Python 3.6.5 ドキュメント 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 6.1.4. テンプレート文字列 6.1.5. ヘルパー関数 6.2. re --- 正規表現操作 6.2.1. 正規表現のシンタックス 6.2 ... . unicodedata --- Unicode データベース 6.6. stringprep --- インターネットのための文字列調製 6.7. readlin ... e --- GNU readline のインタフェース 6.7.1. 初期化ファイル 6.7.2 ... 6.7.6. 補完 6.7.7. 使用例 6.8. rlcompleter --- GNU readline向け補完関数 6.8.1. Completerオブジェクト 関連 ...
https://man.plustar.jp/python/library/text.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数で、次のようにアノテーションがつけられます: def greeting ( name : str ) -> str : return 'Hello ' + nam ... e 関数 greeting で、実引数 name の型は str であり、返り値の型 ... e ( scalar : float , vector : Vector ) -> Vector : return [ scalar * num for num in vector ] # typecheck ... e , List ConnectionOptions = Dict [ str , str ] Address = Tuple [ str , int ] Server = Tuple [ Address , ...
https://man.plustar.jp/python/library/typing.html - [similar]
PREV 1 2 3 4 5 6 NEXT