Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 74 for count (0.047 sec.)
Argparse チュートリアル — Python 3.6.5 ドキュメント 7760
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... . add_argument ( "-v" , "--verbosity" , action = "count" , help = "increase output verbosity" ) args = par ... else : print ( answer ) もう一つの action である "count" を紹介します。これは指定されたオプションの出現回数 ... ore_true" アクションによく似た動作をします。 では "count" アクションが何をもたらすかデモンストレーションをし ... . add_argument ( "-v" , "--verbosity" , action = "count" , help = "increase output verbosity" ) args = par ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 7677
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n, jack, queen, or king). >>> deck = collections . Counter ( tens = 16 , low_cards = 36 ) >>> seen = sample ... ( list ( deck . elements ()), k = 20 ) >>> seen . count ( 'tens' ) / 20 0.15 >>> # Estimate the probabilit ... ( 'HT' , cum_weights = ( 0.60 , 1.00 ), k = 7 ) . count ( 'H' ) >= 5 >>> sum ( trial () for i in range ( 1 ... _diff = mean ( drug ) - mean ( placebo ) n = 10000 count = 0 combined = drug + placebo for i in range ( n ) ...
https://man.plustar.jp/python/library/random.html - [similar]
29.3. builtins --- 組み込みオブジェクト — Python 3.6.5 ドキュメント 7412
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... it__ ( self , f ): self . _f = f def read ( self , count =- 1 ): return self . _f . read ( count ) . upper ...
https://man.plustar.jp/python/library/builtins.html - [similar]
8.5. heapq --- ヒープキューアルゴリズム — Python 3.6.5 ドキュメント 7412
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... '<removed-task>' # placeholder for a removed task counter = itertools . count () # unique sequence count d ... sk' if task in entry_finder : remove_task ( task ) count = next ( counter ) entry = [ priority , count , ta ... k. Raise KeyError if empty.' while pq : priority , count , task = heappop ( pq ) if task is not REMOVED : d ...
https://man.plustar.jp/python/library/heapq.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 7231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... qlite3 class MySum : def __init__ ( self ): self . count = 0 def step ( self , value ): self . count += val ... ue def finalize ( self ): return self . count con = sqlite3 . connect ( ":memory:" ) con . creat ... e3 class IterChars : def __init__ ( self ): self . count = ord ( 'a' ) def __iter__ ( self ): return self d ... ef __next__ ( self ): if self . count > ord ( 'z' ): raise StopIteration self . count += ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
34.1. msilib --- Microsoft インストーラーファイルの読み書き — Python 3.6.5 ドキ... 7133
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... タベースを作成したりします。 msilib. CreateRecord ( count ) ¶ MSICreateRecord() を呼び出して新しいレコードオ ... ブジェクトを返します。 count はレコードのフィールドの数です。 msilib. init_data ... をコミットします。 Database. GetSummaryInformation ( count ) ¶ MsiGetSummaryInformation() を呼び出して新しいサ ... マリー情報オブジェクトを返します。 count は更新された値の最大数です。 参考 MSIDatabaseOpenV ...
https://man.plustar.jp/python/library/msilib.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 7133
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s = nntplib . NNTP ( 'news.gmane.org' ) >>> resp , count , first , last , name = s . group ( 'gmane.comp.py ... committers' ) >>> print ( 'Group' , name , 'has' , count , 'articles, range' , first , 'to' , last ) Group ... ent group, if it exists. Return a tuple (response, count, first, last, name) where count is the (estimated) ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 7133
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... デックス i 以降からインデックス j までの範囲) (8) s.count(x) s 中に x が出現する回数 同じ型のシーケンスは比較 ... th が len(s) 以下なら元の文字列が返されます。 str. count ( sub [ , start [ , end ] ] ) ¶ [ start , end ] の ... ey ): ... return key ... >>> ' {name} was born in {country} ' . format_map ( Default ( name = 'Guido' )) 'G ... uido was born in country' バージョン 3.2 で追加. str. index ( sub [ , sta ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 6966
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... syncore. loop ( [ timeout [ , use_poll [ , map [ , count ] ] ] ] ) ¶ ポーリングループを開始し、count 回が過 ... 場合のみ終了します。全ての引数はオプションです。引数 count のデフォルト値は None で、ループは全てのチャネルが ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6966
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... om numbers suitable for managing secrets such as account authentication, tokens, and similar. On Linux, os. ... es (an int representing a file descriptor does not count as that is not a file path). Unfortunately that as ... s are now abbreviated as "[Previous line repeated {count} more times]" (see traceback for an example). (Con ... om values suitable for managing secrets, such as account authentication, tokens, and similar. 警告 Note tha ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT