Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 82 for mode (0.051 sec.)
13.3. bz2 --- bzip2 圧縮のサポート — Python 3.6.5 ドキュメント 8228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .3.1. ファイルの圧縮/解凍 ¶ bz2. open ( filename , mode='r' , compresslevel=9 , encoding=None , errors=Non ... きする既存のファイルオブジェクトを指定します。 引数 mode には、バイナリモード用に 'r' 、 'rb' 、 'w' 、 'wb ... この関数は BZ2File コンストラクタ BZ2File(filename, mode, compresslevel=compresslevel) と等価です。この時、 ... るようになりました。 class bz2. BZ2File ( filename , mode='r' , buffering=None , compresslevel=9 ) ¶ bzip2 圧 ...
https://man.plustar.jp/python/library/bz2.html - [similar]
13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 8132
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 圧縮をサポートしました。 tarfile. open ( name=None , mode='r' , fileobj=None , bufsize=10240 , **kwargs ) ¶ ... いては、 TarFile オブジェクト 節を参照してください。 mode は 'filemode[:compression]' の形式をとる文字列でな ... ければなりません。デフォルトの値は 'r' です。以下に mode のとりうる組み合わせすべてを示します: mode action ... 、 'a:xz' は利用できないことに注意して下さい。もし mode が、ある (圧縮した) ファイルを読み込み用にオープン ...
https://man.plustar.jp/python/library/tarfile.html - [similar]
12.5. dbm --- Unix "データベース" へのインタフェース — Python 3.6.5 ドキュメン... 8050
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ュール名を含む文字列。 dbm. open ( file , flag='r' , mode=0o666 ) ¶ データベースファイル file を開いて対応す ... み書き用の新規のデータベースを作成する オプションの mode 引数は、新たにデータベースを作成しなければならない ... 送出されます。 dbm.gnu. open ( filename [ , flag [ , mode ] ] ) ¶ gdbm データベースを開いて gdbm オブジェクト ... された場合、例外 error が送出されます。 オプションの mode 引数は、新たにデータベースを作成しなければならない ...
https://man.plustar.jp/python/library/dbm.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 7860
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 以下の項目を定義しています: gzip. open ( filename , mode='rb' , compresslevel=9 , encoding=None , errors=No ... か、既存のファイルオブジェクトを指定します。 引数 mode には、バイナリモード用に 'r' 、 'rb' 、 'a' 、 'ab ... の関数は GzipFile コンストラクタ GzipFile(filename, mode, compresslevel) と等価です。この時、引数 encoding ... で変更: Added support for the 'x' , 'xb' and 'xt' modes. バージョン 3.6 で変更: path-like object を受け入 ...
https://man.plustar.jp/python/library/gzip.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 7860
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ts for stdin, stdout and stderr are opened in text mode using the specified encoding and errors or the io. ... ault. Otherwise, file objects are opened in binary mode. 例: >>> subprocess . run ([ "ls" , "-l" ]) # does ... s stdin , stdout and stderr will be opened in text mode using the encoding and errors specified in the cal ... line argument to its constructor is None . If text mode is not used, stdin , stdout and stderr will be ope ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
13.4. lzma --- LZMA アルゴリズムを使用した圧縮 — Python 3.6.5 ドキュメント 7778
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 圧縮ファイルへの読み書き ¶ lzma. open ( filename , mode="rb" , * , format=None , check=-1 , preset=None , ... に存在するファイルオブジェクトを指定できます。 引数 mode は、バイナリモードでは "r" 、 "rb" 、 "w" 、 "wb" ... コンストラクタと等価になります ( LZMAFile(filename, mode, ...) )。この場合、引数 encoding 、 errors 、および ... なりました。 class lzma. LZMAFile ( filename=None , mode="r" , * , format=None , check=-1 , preset=None , f ...
https://man.plustar.jp/python/library/lzma.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 7683
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... stat () . st_mtime 1327883547.852554 Path. chmod ( mode ) ¶ os.chmod() のようにファイルのモードとアクセス権 ... : >>> p = Path ( 'setup.py' ) >>> p . stat () . st_mode 33277 >>> p . chmod ( 0o444 ) >>> p . stat () . st ... _mode 33060 Path. exists ( ) ¶ パスが既存のファイルかディ ... static') PosixPath('docs/Makefile') Path. lchmod ( mode ) ¶ Path.chmod() のように振る舞いますが、パスがシン ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
22.3. sunau --- Sun AUファイルの読み書き — Python 3.6.5 ドキュメント 7587
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルは以下の関数を定義しています: sunau. open ( file , mode ) ¶ file が文字列ならその名前のファイルを開き、そう ... イルのようにシーク可能なオブジェクトとして扱います。 mode は以下のうちのいずれかです 'r' 読み出しのみのモード ... ドで開くことはできないことに注意して下さい。 'r' の mode は AU_read オブジェクトを返し、 'w' と 'wb' の mod ... te オブジェクトを返します。 sunau. openfp ( file , mode ) ¶ open() と同義。後方互換性のために残されています ...
https://man.plustar.jp/python/library/sunau.html - [similar]
9.7. statistics --- 数理統計関数 — Python 3.6.5 ドキュメント 7506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... grouped data の中央値、すなわち50パーセンタイル。 mode() 離散データの最頻値。 9.7.2. 分散の測度 ¶ これらの ... ストですが低効率な中心位置の測度には median() および mode() があります。 ("効率" は計算効率ではなく統計効率を ... readsheet, including this discussion . statistics. mode ( data ) ¶ 離散データや名目データ data の最頻値を返 ... 最頻値が1つでない場合 StatisticsError を送出します。 mode は離散データであることを想定していて、1つの値を返し ...
https://man.plustar.jp/python/library/statistics.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 7410
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... です。 SERVER_AUTH を purpose として渡すと、 verify_mode を CERT_REQUIRED に設定し、 CA 証明書をロードする ... . CERT_NONE ¶ Possible value for SSLContext.verify_mode , or the cert_reqs parameter to wrap_socket() . In ... this mode (the default), no certificates will be required fr ... RT_OPTIONAL ¶ Possible value for SSLContext.verify_mode , or the cert_reqs parameter to wrap_socket() . In ...
https://man.plustar.jp/python/library/ssl.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT