Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 171 for new (0.104 sec.)
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 5033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... placebo for i in range ( n ): shuffle ( combined ) new_diff = mean ( combined [: len ( drug )]) - mean ( ... combined [ len ( drug ):]) count += ( new_diff >= observed_diff ) print ( f ' { n } label re ...
https://man.plustar.jp/python/library/random.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 5033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ろに二つの空文字列が入ります。 str. replace ( old , new [ , count ] ) ¶ 文字列をコピーし、現れる部分文字列 ... old 全てを new に置換して返します。オプション引数 count が与えられ ... 下の行境界で分解します。特に、以下の境界は universal newlines のスーパーセットです。 表現 説明 \n 改行 \r 復 ... ike object を指定できます。 bytes. replace ( old , new [ , count ] ) ¶ bytearray. replace ( old , new [ , ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 5033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... . >>> s = 'First line. \n Second line.' # \n means newline >>> s # without print(), \n is included in the ... ne.' >>> print ( s ) # with print(), \n produces a new line First line. Second line. \ に続く文字を特殊文 ... ます: >>> print ( 'C:\some \n ame' ) # here \n means newline! C:\some ame >>> print ( r 'C:\some\name' ) # ... - 1 ] 25 >>> squares [ - 3 :] # slicing returns a new list [9, 16, 25] 全てのスライス操作は、指定された要 ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バージョン 3.4 で追加. contextlib. redirect_stdout ( new_target ) ¶ Context manager for temporarily redirec ... バージョン 3.4 で追加. contextlib. redirect_stderr ( new_target ) ¶ Similar to redirect_stdout() but redire ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 構いません。 csvfile がファイルオブジェクトの場合、 newline='' として開くべきです。 [1] オプションとして d ... 利用例: >>> import csv >>> with open ( 'eggs.csv' , newline = '' ) as csvfile : ... spamreader = csv . rea ... ェクトです。 csvfile がファイルオブジェクトの場合、 newline='' として開くべきです [1] 。オプションとして d ... い利用例: import csv with open ( 'eggs.csv' , 'w' , newline = '' ) as csvfile : spamwriter = csv . writer ...
https://man.plustar.jp/python/library/csv.html - [similar]
8. データ型 — Python 3.6.5 ドキュメント 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .13.14.1.3. 解説文字列を使う 8.13.14.1.4. 独自の __new__() を使う 8.13.14.2. OrderedEnum 8.13.14.3. Dupli ...
https://man.plustar.jp/python/library/datatypes.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 黙の例外コンテキストを捕捉することができます: raise new_exc from original_exc from に続く式 (expression) は ... ext__ 属性を True にすることも意味するので、 raise new_exc from None を使うことで効率的に古い例外を新しい ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
17.6. sched --- イベントスケジューラ — Python 3.6.5 ドキュメント 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , action , argument=() , kwargs={} ) ¶ Schedule a new event. The time argument should be a numeric type ...
https://man.plustar.jp/python/library/sched.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 4977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... on . An asynchronous generator expression yields a new asynchronous generator object, which is an asynchr ... close()' is called. yield from の使用例は、"What's New in Python." の PEP 380: サブジェネレータへの委譲構 ... nto a sequence of items, which are included in the new tuple, list, or set, at the site of the unpacking. ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
共通のオブジェクト構造体 (common object structure) — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... etter )( PyObject * , void * ); It should return a new reference on success or NULL with a set exception ...
https://man.plustar.jp/python/c-api/structures.html - [similar]
PREV 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT