Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 74 for count (0.062 sec.)
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6869
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。: >>> class Bar ( Structure ): ... _fields_ = [( "count" , c_int ), ( "values" , POINTER ( c_int ))] ... > ... ar . values = ( c_int * 3 )( 1 , 2 , 3 ) >>> bar . count = 3 >>> for i in range ( bar . count ): ... print ... ートコピーを返します。 ctypes. memmove ( dst , src , count ) ¶ 標準 C の memmove ライブラリ関数と同じものです ... 。: count バイトを src から dst へコピーします。 dst と src ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6869
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s 7bit . raise_on_defect ¶ If True , any defects encountered will be raised as errors. If False (the defaul ... messages will raise unexpected errors. header_max_count ( name ) ¶ name というヘッダに許される最大の数を返 ... y の抽象メソッドの具象実装を提供します: header_max_count ( name ) ¶ Returns the value of the max_count attr ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 6869
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ut findall() . re. sub ( pattern , repl , string , count=0 , flags=0 ) ¶ Return the string obtained by repl ... パターンオブジェクト でも構いません。 省略可能な引数 count は、置換されるパターンの出現回数の最大値です; coun ... n Python 3.7. re. subn ( pattern , repl , string , count=0 , flags=0 ) ¶ sub() と同じ操作を行いますが、タプ ... 索範囲を制限できます。 regex. sub ( repl , string , count=0 ) ¶ sub() 関数と同様で、コンパイルしたパターンを ...
https://man.plustar.jp/python/library/re.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6869
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... po-477863 .) range オブジェクトが index メソッド、 count メソッドをサポートするようになりました。これは、も ... の相互運用性を高めます。 >>> range ( 0 , 100 , 2 ) . count ( 10 ) 1 >>> range ( 0 , 100 , 2 ) . index ( 10 ) ... ns from Mark Dickinson.) collections ¶ collections.Counter クラスに 2 つの形式のインプレイス減算が追加されま ... ースにより適しています。 >>> from collections import Counter >>> tally = Counter ( dogs = 5 , cats = 3 ) >>> ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 6785
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 内にある一意な要素を数え上げるのに便利な collections.Counter クラスが追加されました: >>> Counter ([ 'red' , ' ... blue' , 'red' , 'green' , 'blue' , 'blue' ]) Counter({'blue': 3, 'red': 2, 'green': 1}) (Contributed ... APL の同名機能の模倣品です。また、既存の itertools.count() 関数は新たにオプショナルな step 引数を取るように ... 1 , 0 , 1 , 0 , 1 , 0 , 0 ])) [2, 3, 5, 7] >>> c = count ( start = Fraction ( 1 , 2 ), step = Fraction ( 1 ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ます。 PyObject 構造体自身は参照カウント ( reference count ) と、オブジェクトの "型オブジェクト (type object) ... m_dealloc , This method first clears the reference counts of the two Python attributes. Py_XDECREF() correc ... assign members before decrementing their reference counts. When don't we have to do this? when we absolutel ... y know that the reference count is greater than 1; when we know that deallocation ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 数のマッピングの一つのビューを作成する辞書風のクラス Counter ハッシュ可能なオブジェクトを数え上げる辞書のサブ ... nake' : 'red' }, {}, { 'lion' : 'orange' }) 8.3.2. Counter オブジェクト ¶ 便利で迅速な検数をサポートするカウ ... > # Tally occurrences of words in a list >>> cnt = Counter () >>> for word in [ 'red' , 'blue' , 'red' , 'g ... , 'blue' , 'blue' ]: ... cnt [ word ] += 1 >>> cnt Counter({'blue': 3, 'red': 2, 'green': 1}) >>> # Find th ...
https://man.plustar.jp/python/library/collections.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... of the types of defects that may be reported. max_count ¶ The maximum number of headers of this type that ... only difference is that in the Unique variant, max_count is set to 1. class email.headerregistry. MIMEVersi ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ppend" オプションの引数を指定のリストに追加します "count" 指定のカウンタを 1 増やします "callback" 指定の関 ... ppend_const" オプションの引数をリストに追加します "count" 指定のカウンタを 1 増やします "callback" 指定の関 ... 初にみつけた時点で空のリストを自動的に生成します。 "count" [関連: dest ] dest に保存されている整数値をインク ... グラム例です: parser . add_option ( "-v" , action = "count" , dest = "verbosity" ) コマンドライン上で最初に - ...
https://man.plustar.jp/python/library/optparse.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... thandler は faulthandler を有効化します; -X showrefcount to output the total reference count and number of ... acemalloc.start() を参照してください。 -X showalloccount to output the total count of allocated objects for ... nishes. This only works when Python was built with COUNT_ALLOCS defined. 任意の値を渡し、 sys._xoptions 辞書 ... dler オプション。 バージョン 3.4 で追加: -X showrefcount および -X tracemalloc オプション。 バージョン 3.6 ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT