Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 43 for right (0.036 sec.)
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 16243
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nce: FORWARD 10' forward ( * parse ( arg )) def do_right ( self , arg ): 'Turn turtle right by given number ... of degrees: RIGHT 20' right ( * parse ( arg )) def do_left ( self , ... ============== bye color goto home playback record right circle forward heading left position reset undo (t ... ng is 0 (turtle) reset (turtle) circle 20 (turtle) right 30 (turtle) circle 40 (turtle) right 30 (turtle) c ...
https://man.plustar.jp/python/library/cmd.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 9934
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a[i:hi]) が右側になるようにします。 bisect. bisect_right ( a , x , lo=0 , hi=len(a) ) ¶ bisect. bisect ( a ... O(n) の挿入の段階が律速となります。 bisect. insort_right ( a , x , lo=0 , hi=len(a) ) ¶ bisect. insort ( a ... rn i raise ValueError def find_lt ( a , x ): 'Find rightmost value less than x' i = bisect_left ( a , x ) i ... 1 ] raise ValueError def find_le ( a , x ): 'Find rightmost value less than or equal to x' i = bisect_righ ...
https://man.plustar.jp/python/library/bisect.html - [similar]
11.5. filecmp --- ファイルおよびディレクトリの比較 — Python 3.6.5 ドキュメント 9779
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の低下は起こりません。 left ¶ ディレクトリ a です。 right ¶ ディレクトリ b です。 left_list ¶ a にあるファイ ... リです。 hide および ignore でフィルタされています。 right_list ¶ b にあるファイルおよびサブディレクトリです。 ... ¶ a だけにあるファイルおよびサブディレクトリです。 right_only ¶ b だけにあるファイルおよびサブディレクトリで ... in %s and %s " % ( name , dcmp . left , ... dcmp . right )) ... for sub_dcmp in dcmp . subdirs . values (): ...
https://man.plustar.jp/python/library/filecmp.html - [similar]
複素数オブジェクト (complex number object) — Python 3.6.5 ドキュメント 9625
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... y_complex _Py_c_sum ( Py_complex left , Py_complex right ) ¶ 二つの複素数の和を C の Py_complex 型で返します ... _complex _Py_c_diff ( Py_complex left , Py_complex right ) ¶ 二つの複素数の差を C の Py_complex 型で返します ... _complex _Py_c_prod ( Py_complex left , Py_complex right ) ¶ 二つの複素数の積を C の Py_complex 型で返します ...
https://man.plustar.jp/python/c-api/complex.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 9008
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a curses.error . Attempting to write to the lower right corner of a window, subwindow, or pad will cause a ... es curses.error . Attempting to write to the lower right corner of a window, subwindow, or pad will cause a ... hlight A_LEFT Left highlight A_LOW Low highlight A_RIGHT Right highlight A_TOP Top highlight A_VERTICAL Ver ... KEY_DOWN 下矢印 KEY_UP 上矢印 KEY_LEFT 左矢印 KEY_RIGHT 右矢印 KEY_HOME ホームキー (Home, または上左矢印) ...
https://man.plustar.jp/python/library/curses.html - [similar]
22.9. ossaudiodev --- OSS互換オーディオデバイスへのアクセス — Python 3.6.5 ドキ... 8700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のボリュームを返します。2 要素のタプル (left_volume,right_volume) を返します。ボリュームの値は 0 (無音) から ... 出します。 oss_mixer_device. set ( control , (left , right) ) ¶ 指定したミキサコントロールのボリュームを (lef ... t,right) に設定します。 left と right は整数で、0 (無音) か ...
https://man.plustar.jp/python/library/ossaudiodev.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 8545
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... よび描画 forward() | fd() backward() | bk() | back() right() | rt() left() | lt() goto() | setpos() | setposi ... 0 ) >>> turtle . position () (-30.00,0.00) turtle. right ( angle ) ¶ turtle. rt ( angle ) ¶ パラメータ: ang ... ください。 >>> turtle . heading () 22.0 >>> turtle . right ( 45 ) >>> turtle . heading () 337.0 turtle. left ... す。forward/backward ではタートルがジャンプし、left/right では瞬時に方向を変えます。 >>> turtle . speed () 3 ...
https://man.plustar.jp/python/library/turtle.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... o include that in your original .c file, typically right after the clinic module block: #include "clinic/_p ... passed in together. They can be to the left or the right of the required arguments. They can only be used w ... {direction}_{number} , where {direction} is either right or left depending on whether the group is before o ... e optional groups will behave as if they're to the right of the required arguments. In the case of ambiguit ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 8083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gned' ) 'left aligned ' >>> ' {:>30} ' . format ( 'right aligned' ) ' right aligned' >>> ' {:^30} ' . forma ... ign , text in zip ( '<^>' , [ 'left' , 'center' , 'right' ]): ... '{0: {fill}{align} 16}' . format ( text , ... 'left<<<<<<<<<<<<' '^^^^^center^^^^^' '>>>>>>>>>>>right' >>> >>> octets = [ 192 , 168 , 0 , 1 ] >>> ' {:02 ...
https://man.plustar.jp/python/library/string.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 7774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lineno, int col_offset) -- BoolOp() can use left & right? expr = BoolOp(boolop op, expr* values) | BinOp(ex ... pr left, operator op, expr right) | UnaryOp(unaryop op, expr operand) | Lambda(argu ...
https://man.plustar.jp/python/library/ast.html - [similar]
PREV 1 2 3 4 5 NEXT