Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 36 for group (0.028 sec.)
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 14628
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rg' ) >>> resp , count , first , last , name = s . group ( 'gmane.comp.python.committers' ) >>> print ( 'Gr ... count , 'articles, range' , first , 'to' , last ) Group gmane.comp.python.committers has 1096 articles, ra ... d intend to call reader-specific commands, such as group . If you get unexpected NNTPPermanentError s, you ... >>> with NNTP ( 'news.gmane.org' ) as n : ... n . group ( 'gmane.comp.python.committers' ) ... # doctest: ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 12393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ote) (そのまま) \1 マッチオブジェクト m の処理時 m.group('quote') m.end('quote') (etc.) re.sub() の repl 引 ... = re . search ( '(?<=abc)def' , 'abcdef' ) >>> m . group ( 0 ) 'def' この例ではハイフンに続く単語を探します ... re . search ( r '(?<=-)\w+' , 'spam-egg' ) >>> m . group ( 0 ) 'egg' バージョン 3.5 で変更: 固定長のグループ ... GNORECASE ) ['0', '3', '9'] If there are capturing groups in the separator and it matches at the start of t ...
https://man.plustar.jp/python/library/re.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 10460
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... header. このヘッダ型は以下の属性も提供しています: groups ¶ A tuple of Group objects encoding the addresses ... and groups found in the header value. Addresses that are not ... part of a group are represented in this list as single-address Gro ... the header value. If the header value contains any groups, the individual addresses from the group are incl ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 9651
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... s; the most important ones are: メソッド/属性 目的 group() 正規表現にマッチした文字列を返す start() マッチの ... ッドを試せば、その意味はすぐに理解できます: >>> m . group () 'tempo' >>> m . start (), m . end () (0, 5) >>> ... m . span () (0, 5) group() returns the substring that was matched by the RE ... tch object; span=(4, 11), match='message'> >>> m . group () 'message' >>> m . span () (4, 11) 実際のプログラ ...
https://man.plustar.jp/python/howto/regex.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 9113
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 4.5.3. 引数グループ ¶ ArgumentParser. add_argument_group ( title=None , description=None ) ¶ デフォルトでは ... も良い引数のグループ化方法がある場合、 add_argument_group() メソッドで適切なグループを作成できます: >>> pars ... entParser ( prog = 'PROG' , add_help = False ) >>> group = parser . add_argument_group ( 'group' ) >>> grou ... . add_argument ( '--foo' , help = 'foo help' ) >>> group . add_argument ( 'bar' , help = 'bar help' ) >>> p ...
https://man.plustar.jp/python/library/argparse.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 8701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 持つことができます。 オプションのグループは、 OptionGroup を使って作成します: class optparse. OptionGroup ( ... ption はオプションで、グループの長い説明です OptionGroup は ( OptionParser のように) OptionContainer を継承 ... オプションを定義したら、 OptionParser の add_option_group() メソッドを使ってグループを定義済みのパーサーに追 ... 。 前のセクションで定義したパーサーに、続けて OptionGroup を追加します: group = OptionGroup ( parser , "Dang ...
https://man.plustar.jp/python/library/optparse.html - [similar]
Argparse チュートリアル — Python 3.6.5 ドキュメント 8479
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... ました。では三つ目のメソッド add_mutually_exclusive_group() を紹介しましょう。このメソッドでは、互いに競合す ... ort argparse parser = argparse . ArgumentParser () group = parser . add_mutually_exclusive_group () group . ... ent ( "-v" , "--verbose" , action = "store_true" ) group . add_argument ( "-q" , "--quiet" , action = "stor ... ( description = "calculate X to the power of Y" ) group = parser . add_mutually_exclusive_group () group . ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8241
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... her example is curses.window.addch() , which has a group of two arguments that must always be specified tog ... pproach to parsing, using what are called optional groups . Optional groups are groups of arguments that mu ... sed with positional-only parameters. 注釈 Optional groups are only intended for use when converting functio ... ver be converted to Argument Clinic using optional groups. Functions using optional groups currently cannot ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 7892
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... x 、 Windows 。 shutil. chown ( path , user=None , group=None ) ¶ 指定された path のオーナー user と/または ... group を変更します。 user はシステムのユーザー名か uid で ... す。 group も同じです。少なくともどちらかの引数を指定する必要 ... [ , base_dir [ , verbose [ , dry_run [ , owner [ , group [ , logger ] ] ] ] ] ] ] ) ¶ アーカイブファイル (z ...
https://man.plustar.jp/python/library/shutil.html - [similar]
35.4. grp --- グループデータベースへのアクセス — Python 3.6.5 ドキュメント 7829
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ースへのアクセス ¶ このモジュールでは Unix グループ (group) データベースへのアクセス機構を提供します。全ての ... ジェクトとして報告されます。このオブジェクトの属性は group 構造体の各メンバ (以下の属性フィールド、 <pwd.h> を ...
https://man.plustar.jp/python/library/grp.html - [similar]
PREV 1 2 3 4 NEXT