Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 274 for In (0.175 sec.)
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 4401
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... どの理由から不正になります: if test1 : if test2 : print ( x ) また、このコンテキスト中では、セミコロンによ ... る結合はコロンより強いです。従って、以下の例では、 print() の呼び出しはは全て実行されるか、全く実行されない ... かのどちらかです: if x < y < z : print ( x ); print ( y ); print ( z ) まとめると、以下の ... c_for_stmt | async_funcdef suite ::= stmt_list NEWLINE | NEWLINE INDENT statement + DEDENT statement ::= ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 4401
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... hird! text = "# This is not a comment because it's inside quotes." 3.1. Python を電卓として使う ¶ それで ... / 4 5.0 >>> 8 / 5 # division always returns a floating point number 1.6 整数 (例えば、 2 、 4 、 20 ) は ... int 型であり、小数部を持つ数 (例えば、 5.0 、 1.6 ) は ... part 5 >>> 17 % 3 # the % operator returns the remainder of the division 2 >>> 5 * 3 + 2 # result * divi ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... になるのですか? グローバルインタプリタロック (Global Interpreter Lock) を取り除くことはできないのですか? 入 ... ポートにアクセスするにはどうしますか? sys.stdout (stdin, stderr) を閉じようとしても実際に閉じられないのはな ... or third-party packages, search the Python Package Index or try Google or another Web search engine. Sea ... rching for "Python" plus a keyword or two for your topic ...
https://man.plustar.jp/python/faq/library.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... future = executor . submit ( pow , 323 , 1235 ) print ( future . result ()) map ( func , *iterables , t ... isn't available after timeout seconds from the original call to Executor.map() . timeout can be an int o ... n its value is retrieved from the iterator. When using ProcessPoolExecutor , this method chops iterables ... into a number of chunks which it submits to the pool ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 末尾にあるゼロは切り詰められません。 decimal では、 Infinity , -Infinity , および NaN といった特殊な値も定 ... プイネーブラも定義しています。丸め規則には ROUND_CEILING , ROUND_DOWN , ROUND_FLOOR , ROUND_HALF_DOWN , RO ... われたりします。 decimal モジュールには、 Clamped , InvalidOperation , DivisionByZero , Inexact , Rounded ... l import * >>> getcontext () Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999, capit ...
https://man.plustar.jp/python/library/decimal.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ilename , pattern ) ¶ Test whether the filename string matches the pattern string, returning True or Fal ... se . Both parameters are case-normalized using os.path.normcase() . fnmatchcase() can be used to ... egardless of whether that's standard for the operating system. 次の例では、カレントディレクトリにある、拡 ... を表示しています: import fnmatch import os for file in os . listdir ( '.' ): if fnmatch . fnmatch ( file ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . 汎用オペレーティングシステムサービス » 16.7. logging.config --- ロギングの環境設定 ¶ ソースコード: Lib ... /logging/config.py Important このページには、リファレンス情 ... 級チュートリアル ロギングクックブック この節は、logging モジュールを設定するための API を解説します。 16. ... 7.1. 環境設定のための関数 ¶ 以下の関数は logging モジュールの環境設定をします。これらの関数は、 lo ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mymodule >>> pdb . run ( 'mymodule.test()' ) > <string>(0)?() (Pdb) continue > <string>(1)?() (Pdb) cont ... inue NameError: 'spam' > <string>(1)?() (Pdb) バージョン 3.3 で変更: readline モジ ... 中のその後に続く文をステップ実行できます。そして continue コマンドでデバッガーを停止し処理を続行できます。 ... st () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File "./mymodule.py" , li ...
https://man.plustar.jp/python/library/pdb.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 4371
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 6. テキスト処理サービス » 6.1. string --- 一般的な文字列操作 ¶ ソースコード: Lib/string ... のモジュールで定義されている定数は以下の通りです: string. ascii_letters ¶ 後述の ascii_lowercase と ascii_ ... を合わせたもの。この値はロケールに依存しません。 string. ascii_lowercase ¶ 小文字 'abcdefghijklmnopqrstuv ... wxyz' 。この値はロケールに依存せず、固定です。 string. ascii_uppercase ¶ 大文字 'ABCDEFGHIJKLMNOPQRSTUV ...
https://man.plustar.jp/python/library/string.html - [similar]
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 4342
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ython レイヤにおける dict と同じオブジェクトです。 int PyDict_Check ( PyObject *p ) ¶ 引数が辞書オブジェ ... 書型のサブタイプのインスタンスの場合に真を返します。 int PyDict_CheckExact ( PyObject *p ) ¶ p が辞書オブジ ... します。 PyObject * PyDictProxy_New ( PyObject *mapping ) ¶ Return value: New reference. あるマップ型オブ ... ジェクトに対して、読み出し専用に制限された types.MappingProxyType オブジェクトを返します。通常、この関数は ...
https://man.plustar.jp/python/c-api/dict.html - [similar]