Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 213 for return (0.133 sec.)
22.1. audioop --- 生の音声データを操作する — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e = audioop . tostereo ( rsample , width , 0 , 1 ) return audioop . add ( lsample , rsample , width ) もし A ... oop . mul ( outputdata , 2 , - factor ) + postfill return audioop . add ( inputdata , outputdata , 2 ) 関連キ ...
https://man.plustar.jp/python/library/audioop.html - [similar]
12.2. copyreg --- pickle サポート関数を登録する — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... c ): ... print ( "pickling a C instance..." ) ... return C , ( c . a ,) ... >>> copyreg . pickle ( C , pick ...
https://man.plustar.jp/python/library/copyreg.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... window by one tab). After certain keywords (break, return etc.) the next line is dedented. In leading indent ... 、次を取り出します。OS X では C-n を使ってください。 Return は、以前のコマンドを取り出しているときは、そのコマ ... grams run root.mainloop() , which usually does not return until the tk app is destroyed. If the program is r ... >>> shell prompt does not appear until mainloop() returns, at which time there is nothing left to interact ...
https://man.plustar.jp/python/library/idle.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... addTest ( WidgetTestCase ( 'test_widget_resize' )) return suite if __name__ == '__main__' : runner = unittes ... Hasattr ( obj , attr ): if hasattr ( obj , attr ): return lambda func : func return unittest . skip ( " {!r} ... TestCase ( test_class ) suite . addTests ( tests ) return suite コマンドラインからでも TestLoader.discover() ... tern ) standard_tests . addTests ( package_tests ) return standard_tests バージョン 3.5 で変更: パッケージ名 ...
https://man.plustar.jp/python/library/unittest.html - [similar]
20.12. xml.sax.xmlreader --- XML パーサのインタフェース — Python 3.6.5 ドキュメ... 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きません。つまり、パースが実行された後で、パーサから return する前に呼び出す必要があるのです。 デフォルトでは、 ... 、あるいは InputSource オブジェクトです。 parse() が return したとき、入力データの処理は完了し、パーサ・オブジ ...
https://man.plustar.jp/python/library/xml.sax.reader.html - [similar]
10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 4618
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... を提供しています: >>> import os >>> os . getcwd () # Return the current working directory 'C:\\Python36' >>> o ... 作上の助けになります: >>> import os >>> dir ( os ) <returns a list of all module functions> >>> help ( os ) < ... numbers. >>> print(average([20, 30, 70])) 40.0 """ return sum ( values ) / len ( values ) import doctest doc ...
https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
ファイルオブジェクト — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... yObject * PyFile_GetLine ( PyObject *p , int n ) ¶ Return value: New reference. p.readline([n]) と同じで、こ ...
https://man.plustar.jp/python/c-api/file.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... internal data structures. If successful, initscr() returns a window object representing the entire screen; t ... hen runs your provided callable. Once the callable returns, wrapper() will restore the original state of the ... to input strings, and so forth. The stdscr object returned by the initscr() function is a window object tha ... n() function creates a new window of a given size, returning the new window object. begin_x = 20 ; begin_y = ...
https://man.plustar.jp/python/howto/curses.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... portlib.import_module() , otherwise use the loader returned by the replacement you chose for imp.find_module ... see if the module has already been imported. try : return sys . modules [ name ] except KeyError : pass # If ... e , description = imp . find_module ( name ) try : return imp . load_module ( name , fp , pathname , descrip ...
https://man.plustar.jp/python/library/imp.html - [similar]
32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ce_string ): st = parser . suite ( source_string ) return st , st . compile () def load_expression ( source_ ... string ): st = parser . expr ( source_string ) return st , st . compile () 関連キーワード: オブジェクト ...
https://man.plustar.jp/python/library/parser.html - [similar]