Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 54 for re (0.031 sec.)
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 14981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 6. テキスト処理サービス » 6.2. re --- 正規表現操作 ¶ ソースコード: Lib/re.py このモジ ... のチューニング変数を失います。 参考 The third-party regex module, which has an API compatible with the st ... andard library re module, but offers additional functionality and a ... more thorough Unicode support. 6.2.1. 正規表現のシンタッ ...
https://man.plustar.jp/python/library/re.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 14403
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... uchling < amk @ amk . ca > 概要 このドキュメントは re モジュールを使って Python で正規表現を扱うための導 ... 門ドキュメントを用意しています。 はじめに ¶ 正規表現 regular expressions (REs や regexes または regex patt ... 内部に埋め込まれた高度に特化したプログラミング言語で re モジュールから利用可能です。この小さな言語を利用す ... る全ての文字とマッチします。正規表現のコンパイル時に re.ASCII フラグを与えることにより、 \w を、より制限さ ...
https://man.plustar.jp/python/howto/regex.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 8603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ル形式のワイルドカードに対応しています。これらは、 ( re モジュールでドキュメント化されている) 正規表現とは ... er the filename string matches the pattern string, returning True or False . Both parameters are case-no ... an be used to perform a case-sensitive comparison, regardless of whether that's standard for the operati ... attern ) ¶ Test whether filename matches pattern , returning True or False ; the comparison is case-sens ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nsfer Protocol. It can be used to implement a news reader or poster, or automated news processors. It is ... す: >>> s = nntplib . NNTP ( 'news.gmane.org' ) >>> resp , count , first , last , name = s . group ( 'gma ... .committers has 1096 articles, range 1 to 1096 >>> resp , overviews = s . over (( last - 9 , last )) >>> ... ib . decode_header ( over [ 'subject' ])) ... 1087 Re: Commit privileges for Łukasz Langa 1088 Re: 3.2 a ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 7817
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... Argument Clinic の利用方法について説明します。 Currently Argument Clinic is considered internal-only fo ... rted for files outside CPython, and no guarantees are made regarding backwards compatibility for future ... maintain an external C extension for CPython, you're welcome to experiment with Argument Clinic in your ... ith CPython 3.5 could be totally incompatible and break all your code. Argument Clinic の目的 ¶ Argument ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 7713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 在り処が path であることを記録します。 modulefinder. ReplacePackage ( oldname , newname ) ¶ 実際にはパッケ ... ModuleFinder ( path=None , debug=0 , excludes=[] , replace_paths=[] ) ¶ このクラスでは run_script() およ ...report() メソッドを提供しています。これらのメソッドは ... ます。 excludes は検索から除外するモジュール名です。 replace_paths には、モジュールパス内で置き換えられるパ ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 7713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スペース (space)、タブ (tab)、改行 (linefeed)、復帰 (return)、改頁 (formfeed)、垂直タブ (vertical tab) です ... て変換します。デフォルトバージョンは 's' (str), 'r' (repr), 'a' (ascii) 変換タイプを理解します。 6.1.3. 書 ... す: {{ および }} 。 置換フィールドの文法は以下です: replacement_field ::= "{" [ field_name ] ["!" convers ... identifier | digit +] attribute_name ::= identifier element_index ::= digit + | index_string index_stri ...
https://man.plustar.jp/python/library/string.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 7668
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... g its appearance---and the curses library will figure out what control codes need to be sent to the term ... ons, checkboxes, or dialogs; if you need such features, consider a user interface library such as Urwid ... である ncurses にとって置き換えられました。Linux や FreeBSD のようなオープンソース Unix を利用している場合 ... You could also try the Console module written by Fredrik Lundh, which doesn't use the same API as curse ...
https://man.plustar.jp/python/howto/curses.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 7668
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 全てのオブジェクトは、比較でき、真理値を判定でき、 ( repr() 関数や、わずかに異なる str() 関数によって) 文字 ... です。複素数 z から実部および虚部を取り出すには、 z.real および z.imag を使ってください。 (標準ライブラリ ... x) x の浮動小数点数への変換 (4)(6) float() complex(re, im) 実部 re , 虚部 im の複素数。 im の既定値はゼロ ... vedNumericType.txt をご覧ください。 全ての numbers.Real 型 ( int 、 float ) は以下の演算も含みます: 演算 ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 7609
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 実行されるプログラムのプロファイルに適しています。 Brett Rosen と Ted Czotter によって提供された lsprof に ... たい場合、次のようにできます: import cProfile import re cProfile . run ( 're.compile("foo|bar")' ) (お使い ... ときは代わりに profile を使って下さい) 上のコードは re.compile() を実行して、プロファイル結果を次のように ... calls ( 192 primitive calls ) in 0.002 seconds Ordered by : standard name ncalls tottime percall cumtime ...
https://man.plustar.jp/python/library/profile.html - [similar]
PREV 1 2 3 4 5 6 NEXT