Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 249 for FOR (0.167 sec.)
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 4377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tree rooted at top, calling the callback function for each regular file''' for f in os . listdir ( top ) ...
https://man.plustar.jp/python/library/stat.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 4377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ビット単位演算 ¶ Bitwise operations only make sense for integers. Negative numbers are treated as their 2' ... 返します。このメソッドはコンテナとイテレータの両方を for および in 文で使えるようにするために必要です。この ... リストのリストを作るにはこうします: >>> lists = [[] for i in range ( 3 )] >>> lists [ 0 ] . append ( 3 ) > ... で区切る: [a] 、 [a, b, c] リスト内包表記を使う: [x for x in iterable] 型コンストラクタを使う: list() また ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 4377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... base-two logarithm of the window size, which therefore ranges between 512 and 32768. Larger values produ ... ompressed data. The wbits parameter depends on the format of data , and is discussed further below. If bu ... er (or "window size"), and what header and trailer format is expected. It is similar to the parameter for ... and automatically accepts either the zlib or gzip format. When decompressing a stream, the window size m ...
https://man.plustar.jp/python/library/zlib.html - [similar]
4. 実行モデル — Python 3.6.5 ドキュメント 4377
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... す。 以下の構造で、名前が束縛されます: 関数の仮引数 (formal parameter) 指定、 import 文、クラスや関数の定義 ... 束縛します)、代入が行われるときの代入対象の識別子、 for ループのヘッダ、 with 文や except 節の as の後ろ。 ... ードは失敗します: class A : a = 42 b = list ( a + i for i in range ( 10 )) 4.2.3. 組み込みと制限付きの実行 ...
https://man.plustar.jp/python/reference/executionmodel.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... eck ( pFunc )) { pArgs = PyTuple_New ( argc - 3 ); for ( i = 0 ; i < argc - 3 ; ++ i ) { pValue = PyLong_ ... : print ( "Will compute" , a , "times" , b ) c = 0 for i in range ( 0 , a ): c = c + b return c 実行結果は ... -ldl -lutil' >>> sysconfig . get_config_var ( 'LINKFORSHARED' ) '-Xlinker -export-dynamic' 関連キーワード ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... \n " ); exit ( 1 ); } /* Add a built-in module, before Py_Initialize */ PyImport_AppendInittab ( "spam" ... gram ); return 0 ; } 注釈 単一のプロセス内 (または fork() 後の exec() が介入していない状態) における複数の ... imple on Unix: just place your file ( spammodule.c for example) in the Modules/ directory of an unpacked ... ted on the line in the configuration file as well, for instance: spam spammodule.o -lX11 1.6. C から Pyth ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Windows 上の Python FAQ — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... 2 Type "help", "copyright", "credits" or "license" for more information. >>> You have started the interpr ... リプトを EXE に出来ますか? ¶ http://cx-freeze.sourceforge.net/ は、Python コードからコンソール、GUI の EXE ... : import ctypes def kill ( pid ): """kill function for Win32""" kernel32 = ctypes . windll . kernel32 han ...
https://man.plustar.jp/python/faq/windows.html - [similar]
11.7. glob --- Unix 形式のパス名のパターン展開 — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ames beginning with a dot ( . ) as special cases. (For tilde and shell variable expansion, use os.path.ex ...
https://man.plustar.jp/python/library/glob.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e the loader returned by the replacement you chose for imp.find_module() . If you called imp.load_module( ... the 使用例 section of the importlib documentation for details of the various approaches. imp. new_module ...
https://man.plustar.jp/python/library/imp.html - [similar]
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _script ( 'bacon.py' ) print ( 'Loaded modules:' ) for name , mod in finder . modules . items (): print ( ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]