Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 82 for mode (0.030 sec.)
- 11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 12941
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
るための以下の関数を定義しています: stat. S_ISDIR ( mode ) ¶ ファイルのモードがディレクトリの場合にゼロでな...
い値を返します。 stat. S_ISCHR ( mode ) ¶ ファイルのモードがキャラクタ型の特殊デバイスフ...
イルの場合にゼロでない値を返します。 stat. S_ISBLK ( mode ) ¶ ファイルのモードがブロック型の特殊デバイスファ...
イルの場合にゼロでない値を返します。 stat. S_ISREG ( mode ) ¶ ファイルのモードが通常ファイルの場合にゼロでな...
- https://man.plustar.jp/python/library/stat.html - [similar]
- 16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 10857
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
heritable 引数が追加されました。 os. fchmod ( fd , mode ) ¶ fd で指定されたファイルのモードを mode に変更し...
ます。 mode に指定できる値については、 chmod() のドキュメントを...
参照してください。Python 3.3 以降では os.chmod(fd, mode) と等価です。 利用できる環境 : Unix 。 os. fchown...
ポートすることがあります。 os. open ( path , flags , mode=0o777 , * , dir_fd=None ) ¶ ファイル path を開き、...
- https://man.plustar.jp/python/library/os.html - [similar]
- 13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 10489
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ile オブジェクト ¶ class zipfile. ZipFile ( file , mode='r' , compression=ZIP_STORED , allowZip64=True ) ¶...
g), a file-like object or a path-like object . The mode parameter should be 'r' to read an existing file,...
'x' to exclusively create and write a new file. If mode is 'x' and file refers to an existing file, a File...
ExistsError will be raised. If mode is 'a' and file refers to an existing ZIP file, th...
- https://man.plustar.jp/python/library/zipfile.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 10039
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ise an exception. On many terminals, the "visible" mode is an underline cursor and the "very visible" mode...
is a block cursor. curses. def_prog_mode ( ) ¶ 現在の端末属性を、稼動中のプログラムが curse...
を使わない "シェル" モードです。) その後 reset_prog_mode() を呼ぶとこのモードを復旧します。 curses. def_she...
ll_mode ( ) ¶ 現在の端末属性を、稼動中のプログラムが curse...
- https://man.plustar.jp/python/library/curses.html - [similar]
- 19.10. uu --- uuencode形式のエンコードとデコード — Python 3.6.5 ドキュメント 9317
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ます: uu. encode ( in_file , out_file , name=None , mode=None ) ¶ in_file を out_file にエンコードします。エ...
イルには、デフォルトでデコード時に利用される name と mode を含んだヘッダがつきます。省略された場合には、 in_...
えられます。 uu. decode ( in_file , out_file=None , mode=None , quiet=False ) ¶ uuencode 形式でエンコードさ...
e がパス名でかつファイルを作る必要があるときには、 mode がパーミッションの設定に使われます。 out_file と m...
- https://man.plustar.jp/python/library/uu.html - [similar]
- 36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 8950
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
output to FILE" ) parser . add_option ( "-m" , "--mode" , default = "intermediate" , help = "interaction...
) -f FILE, --filename=FILE write output to FILE -m MODE, --mode=MODE interaction mode: novice, intermediat...
生成されるヘルプメッセージの中で分かります。例えば、"mode" option の場合にはこのようになります: - m MODE , -...
- mode = MODE ここで "MODE" はメタ変数 (meta-variable) と...
- https://man.plustar.jp/python/library/optparse.html - [similar]
- 22.4. wave --- WAVファイルの読み書き — Python 3.6.5 ドキュメント 8868
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
下の関数と例外を定義しています: wave. open ( file , mode=None ) ¶ file が文字列ならその名前のファイルを開き...
うでないなら file like オブジェクトとして扱います。 mode は以下のうちのいずれかです: 'rb' 読み出しのみのモー...
方のモードで開くことはできないことに注意して下さい。 mode が 'rb' の場合 Wave_read オブジェクトを返し、 'wb'...
の場合 Wave_write オブジェクトを返します。 mode が省略されていて、 file-like オブジェクトが file と...
- https://man.plustar.jp/python/library/wave.html - [similar]
- 11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し処理をサポートする... 8595
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ます。しかし、 input() や FileInput をコールする際に mode パラメータを指定すれば、これをオーバーライドするこ...
で設定します。このフックは、ふたつの引数 filename と mode をとる関数でなければなりません。そしてその関数の返...
les=None , inplace=False , backup='' , bufsize=0 , mode='r' , openhook=None ) ¶ FileInput クラスのインスタ...
les=None , inplace=False , backup='' , bufsize=0 , mode='r' , openhook=None ) ¶ FileInput クラスはモジュー...
- https://man.plustar.jp/python/library/fileinput.html - [similar]
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 8405
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
size between 1 and 32 bytes. BLAKE2 supports keyed mode (a faster and simpler replacement for HMAC ), salt...
fanout (0 to 255, 0 if unlimited, 1 in sequential mode). depth : maximal depth of tree (1 to 255, 255 if...
unlimited, 1 in sequential mode). leaf_size : maximal byte length of leaf (0 to 2*...
*32-1, 0 if unlimited or in sequential mode). node_offset : node offset (0 to 2**64-1 for BLAK...
- https://man.plustar.jp/python/library/hashlib.html - [similar]
- 21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 8323
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
, rest=None ) ¶ Retrieve a file in binary transfer mode. cmd should be an appropriate RETR command: 'RETR...
ieve a file or directory listing in ASCII transfer mode. cmd should be an appropriate RETR command (see re...
.stdout . FTP. set_pasv ( val ) ¶ Enable "passive" mode if val is true, otherwise disable passive mode. Pa...
ssive mode is on by default. FTP. storbinary ( cmd , fp , blo...
- https://man.plustar.jp/python/library/ftplib.html - [similar]