Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 82 for mode (0.055 sec.)
22.9. ossaudiodev --- OSS互換オーディオデバイスへのアクセス — Python 3.6.5 ドキ... 6688
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .error としても利用できます。) ossaudiodev. open ( mode ) ¶ ossaudiodev. open ( device , mode ) オーディオ ... 参照します。見つからなければ /dev/dsp を参照します。 mode は読み出し専用アクセスの場合には 'r' 、書き込み専用 ... スファイルの名前を含む文字列です。 oss_audio_device. mode ¶ ファイルの I/O モードで、 "r" , "rw" , "w" のどれ ...
https://man.plustar.jp/python/library/ossaudiodev.html - [similar]
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 6688
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t ( 'SHELL' , 'sh' ) filename = options . filename mode = 'ab' if options . append else 'wb' with open ( f ... ilename , mode ) as script : def read ( fd ): data = os . read ( ...
https://man.plustar.jp/python/library/pty.html - [similar]
9. トップレベル要素 — Python 3.6.5 ドキュメント 6688
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ものです。 インタプリタは、対話的モード (interactive mode) で起動されることもあります; この場合、インタプリタ ... s a tty device, the interpreter enters interactive mode; otherwise, it executes the file as a complete pro ...
https://man.plustar.jp/python/reference/toplevel_components.html - [similar]
10. API リファレンス — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... を走らせる別プロセスを起動します。 mkpath ( name [ , mode=511 ] ) ¶ distutils.dir_util.mkpath() を実行します ... を提供します。 distutils.dir_util. mkpath ( name [ , mode=0o777 , verbose=0 , dry_run=0 ] ) ¶ ディレクトリと ... utils.dir_util. create_tree ( base_dir , files [ , mode=0o777 , verbose=0 , dry_run=0 ] ) ¶ files を置くた ... レクトリ部分が(既に存在していなければ)作成されます。 mode , verbose と dry_run フラグは mkpath() と同じです。 ...
https://man.plustar.jp/python/distutils/apiref.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ter. This HOWTO is an introduction to writing text-mode programs with curses and Python. It doesn't attemp ... ードをこうします: stdscr . addstr ( 0 , 0 , "Current mode: Typing mode" , curses . A_REVERSE ) stdscr . refr ... initializes 8 basic colors when it activates color mode. They are: 0:black, 1:red, 2:green, 3:yellow, 4:bl ...
https://man.plustar.jp/python/howto/curses.html - [similar]
35.10. pipes --- シェルパイプラインへのインタフェース — Python 3.6.5 ドキュメン... 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... end() を参照してください。 Template. open ( file , mode ) ¶ ファイル類似のオブジェクトを返します。このオブ ... パイプラインを通して読み書きするようになっています。 mode には 'r' または 'w' のいずれか一つしか与えることが ...
https://man.plustar.jp/python/library/pipes.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 6511
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... トを参照してください。 compile ( source , filename , mode , flags=0 , dont_inherit=False , optimize=-1 ) ¶ s ... を渡して下さい ( '<string>' が一般的に使われます)。 mode 引数は、コンパイルされるコードの種類を指定します; ... ブジェクトを渡します。このコードオブジェクトが、引数 mode を 'exec' としてコンパイルされている場合、 eval() ... いことは format() も参照してください。 open ( file , mode='r' , buffering=-1 , encoding=None , errors=None , ...
https://man.plustar.jp/python/library/functions.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 6511
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ファに保存されることもあります。 Compress. flush ( [ mode ] ) ¶ All pending input is processed, and a bytes ... ining the remaining compressed output is returned. mode can be selected from the constants Z_NO_FLUSH , Z_ ... pressing any more data. After calling flush() with mode set to Z_FINISH , the compress() method cannot be ...
https://man.plustar.jp/python/library/zlib.html - [similar]
16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 6416
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リーストリームを生成する一番簡単な方法は、 open() の mode 文字列に 'b' を指定することです: f = open ( "myfil ... t() で取得される) を利用します。 io. open ( file , mode='r' , buffering=-1 , encoding=None , errors=None , ... 6.2.3.2. 生ファイルI/O ¶ class io. FileIO ( name , mode='r' , closefd=True , opener=None ) ¶ FileIO はバイ ... e に設定されていない場合、この fd も閉じられます。 mode は 読み込み(デフォルト)、書き込み、排他的作成、追 ...
https://man.plustar.jp/python/library/io.html - [similar]
34.2. msvcrt --- MS VC++実行時システムの有用なルーチン群 — Python 3.6.5 ドキュ... 6416
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 34.2.1. ファイル操作関連 ¶ msvcrt. locking ( fd , mode , nbytes ) ¶ C 言語による実行時システムにおけるファ ... バイトで、ファイルの末端まで延長することができます。 mode は以下に列挙する LK_* のいずれか一つでなければなり ... かじめロックされていなければなりません。 msvcrt. setmode ( fd , flags ) ¶ ファイル記述子 fd に対して、行末文 ...
https://man.plustar.jp/python/library/msvcrt.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT