Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 75 for length (0.081 sec.)
21.9. urllib.error --- urllib.request が投げる例外 — Python 3.6.5 ドキュメント 6710
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、ダウンロードされたデータの量が予期した量 ( Content-Length ヘッダで与えられる) よりも少ないことを検知した際に ...
https://man.plustar.jp/python/library/urllib.error.html - [similar]
はじめに — Python 3.6.5 ドキュメント 6571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yObject * item ) { Py_ssize_t i , n ; n = PyObject_Length ( target ); if ( n < 0 ) return -1 ; for ( i = 0 ; ... tal = 0 , value ; PyObject * item ; n = PySequence_Length ( sequence ); if ( n < 0 ) return -1 ; /* Has no l ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 6571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... apping_Size ( PyObject *o ) ¶ Py_ssize_t PyMapping_Length ( PyObject *o ) ¶ Returns the number of keys in ob ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
10.3. operator --- 関数形式の標準演算子 — Python 3.6.5 ドキュメント 6571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... でインデクスが b の値を c に設定します。 operator. length_hint ( obj , default=0 ) ¶ オブジェクト o の概算の ... 長さを返します。最初に実際の長さを、次に object.__length_hint__() を使って概算の長さを、そして最後にデフォル ...
https://man.plustar.jp/python/library/operator.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 6571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ァイルの操作 ¶ shutil. copyfileobj ( fsrc , fdst [ , length ] ) ¶ ファイル形式のオブジェクト fsrc の内容を fds ... t へコピーします。整数値 length は与えられた場合バッファサイズを表します。特に len ...
https://man.plustar.jp/python/library/shutil.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... s whose format units require two arguments (like a length variable, or an encoding string, or a pointer to a ... ytes ( '\\0' ) are permitted inside the value. The length of the string will be passed in to the impl functi ... g parameter, as a parameter named <parameter_name>_length . Please note, not every possible combination of a ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... take a character, which can be either a string of length 1, a bytestring of length 1, or an integer. Consta ...
https://man.plustar.jp/python/howto/curses.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... できる環境 : Unix 、 Windows 。 os. ftruncate ( fd , length ) ¶ ファイル記述子 fd に対応するファイルを、サイズ ... が最長で length バイトになるように切り詰めます。Python 3.3 以降では ... os.truncate(fd, length) と等価です。 利用できる環境 : Unix 、 Windows 。 ... ix 。 バージョン 3.3 で追加. os. truncate ( path , length ) ¶ path に対応するファイルを、サイズが最大で leng ...
https://man.plustar.jp/python/library/os.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ソッドを一つサポートします: slice. indices ( self , length ) ¶ このメソッドは単一の整数引数 length を取り、ス ... ライスオブジェクトが length 要素のシーケンスに適用されたときに表現する、スライ ... メソッドを定義していなければなりません。 object. __length_hint__ ( self ) ¶ 呼び出して operator.length_hint( ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 6432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... は、Unicode 文字列を受け取って 2 要素タプル (string, length) を返す関数です。 string は、与えられたエンコーディ ... 換した部分 (おそらく全体) を含む 8 ビット文字列で、 length は何文字の Unicode 文字列が変換されたかを伝えます。 ... ビット文字列を受け取って、2 要素のタプル (ustring, length) を返します。 ustring が結果の Unicode 文字列で、整 ...length が、8 ビット文字列何文字が消費されたかを表します。 ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT