Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 74 for count (0.096 sec.)
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... します。 バージョン 3.3 で追加. Py_ssize_t PyUnicode_Count ( PyObject *str , PyObject *substr , Py_ssize_t st ... Object *substr , PyObject *replstr , Py_ssize_t maxcount ) ¶ Return value: New reference. str 中に出現する ... substr を最大で maxcount 個 replstr に置換し、置換結果である Unicode オブジ ... ェクトを返します。 maxcount == -1 にすると、文字列中に現れる全ての substr を置 ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
用語集 — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... . Python performs garbage collection via reference counting and a cyclic garbage collector that is able to ... efaultdict , collections.OrderedDict , collections.Counter などです。 meta path finder sys.meta_path を検索 ... mime . text . __name__ 'email.mime.text' reference count (参照カウント) あるオブジェクトに対する参照の数。参 ... が任意のオブジェクトの参照カウントを知るための getrefcount() 関数を提供しています。 regular package 伝統的な、 ...
https://man.plustar.jp/python/glossary.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) Namespace(types=[<class 'str'>, <class 'int'>]) 'count' - このアクションはキーワード引数の数を数えます。例 ... er . add_argument ( '--verbose' , '-v' , action = 'count' ) >>> parser . parse_args ([ '-vvv' ]) Namespace( ...
https://man.plustar.jp/python/library/argparse.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the end of that time. window. touchline ( start , count [ , changed ] ) ¶ Pretend count lines have been ch ...
https://man.plustar.jp/python/library/curses.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ン 3.6 で追加. socket. sendfile ( file , offset=0 , count=None ) ¶ 高性能の os.sendfile を使用して、ファイル ... ffset は、ファイルの読み出し開始位置を指定します。 count が指定されている場合、ファイルを EOF まで送信するの ...
https://man.plustar.jp/python/library/socket.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... とは可能です。たとえば整数のリストを返すのは、 self.count を 0 にして、 next() メソッドが self.count をインク ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 6242
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... d in bpo-2719 .) タプルがリストと同じく index() と count() メソッドを持つようになっています: >>> t = ( 0 , ... 3 , 4 , 0 , 1 , 2 ) >>> t . index ( 3 ) 3 >>> t . count ( 0 ) 2 (Contributed by Raymond Hettinger) ビルトイ ... ースコアスタイルに名前変更されています; 例えば activeCount() メソッドは active_count() にリネームされます。2. ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
はじめに — Python 3.6.5 ドキュメント 6158
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 整数型ですら) 型 ( type ) と参照カウント ( reference count ) があります。あるオブジェクトの型は、そのオブジェ ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 6158
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e" ] if fileitem . file : # It's an uploaded file; count lines linecount = 0 while True : line = fileitem . ... file . readline () if not line : break linecount = linecount + 1 FieldStorage オブジェクトは with 文 ...
https://man.plustar.jp/python/library/cgi.html - [similar]
8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 6158
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ): ... def _generate_next_value_ ( name , start , count , last_values ): ... return name ... >>> class Ord ...
https://man.plustar.jp/python/library/enum.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT