Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 36 for expression (0.029 sec.)
6. 式 (expression) — Python 3.6.5 ドキュメント 16134
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ンス » 6. 式 (expression) ¶ この章では、Python の式における個々の要素の意味 ... t_display | dict_display | set_display | generator_expression | yield_atom 6.2.1. 識別子 (identifier、または名前 ... 括弧で囲ったものです: parenth_form ::= "(" [ starred_expression ] ")" 丸括弧で囲われた式のリストは、個々の式が表現 ... 記の共通の構文要素はこの通りです: comprehension ::= expression comp_for comp_for ::= [ASYNC] "for" target_list "i ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 10666
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ます。単純文の構文は以下の通りです: simple_stmt ::= expression_stmt | assert_stmt | assignment_stmt | augmented_a ... port_stmt | global_stmt | nonlocal_stmt 7.1. 式文 (expression statement) ¶ 式文は、(主に対話的な使い方では) 値を ... 、有用なこともあります。式文の構文は以下の通りです: expression_stmt ::= starred_expression 式文は式のリスト (単一 ... assignment_stmt ::= ( target_list "=")+ ( starred_expression | yield_expression ) target_list ::= target ("," t ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 9541
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 条件分岐を実行するために使われます: if_stmt ::= "if" expression ":" suite ( "elif" expression ":" suite )* ["else" ... 行を繰り返すために使われます: while_stmt ::= "while" expression ":" suite ["else" ":" suite ] while 文は式を繰り返 ... めに使われます: for_stmt ::= "for" target_list "in" expression_list ":" suite ["else" ":" suite ] 式リストは一度だ ... れはイテラブルオブジェクトを与えなければなりません。 expression_list の結果に対するイテレータが生成されます。その後 ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 9192
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... mapping protocol, this is equivalent to the Python expression len(o) . int PyMapping_DelItemString ( PyObject *o ... and 0 otherwise. This is equivalent to the Python expression key in o . This function always succeeds. int PyMa ... and 0 otherwise. This is equivalent to the Python expression key in o . This function always succeeds. PyObject ... L on failure. This is the equivalent of the Python expression o[key] . int PyMapping_SetItemString ( PyObject *o ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 8970
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eval() の説明を参照してください。) pdb. runeval ( expression , globals=None , locals=None ) ¶ デバッガーに制御さ ... で (文字列またはコードオブジェクトとして与えられる) expression を評価します。 runeval() から復帰するとき、式の値を ... atement , globals=None , locals=None ) ¶ runeval ( expression , globals=None , locals=None ) ¶ runcall ( functio ... (rgs) ¶ 現在の関数の引数リストをプリントします。 p expression ¶ 現在のコンテキストにおいて expression を評価し、 ...
https://man.plustar.jp/python/library/pdb.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 8209
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... eption raised for errors in the input. Attributes: expression -- input expression in which the error occurred me ... explanation of the error """ def __init__ ( self , expression , message ): self . expression = expression self . ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8067
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... you provide for a parameter can't be any arbitrary expression. Currently the following are explicitly supported: ... may need to get even more elaborate, to allow full expressions like CONSTANT - 1 .) Argument Clinic が生成した関 ... pport for a default value of NULL , and for simple expressions, documented in the following sections. NULL デフォ ... ore than just a literal value. It can be an entire expression, using math operators and looking up attributes on ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
Python 言語リファレンス — Python 3.6.5 ドキュメント 7924
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... な考慮 5.8. 取り掛かり中の問題 5.9. 参考資料 6. 式 (expression) 6.1. 算術変換 (arithmetic conversion) 6.2. アトム ... ル演算 (boolean operation) 6.12. 条件式 (Conditional Expressions) 6.13. ラムダ (lambda) 6.14. 式のリスト 6.15. 評価 ... 子の優先順位 7. 単純文 (simple statement) 7.1. 式文 (expression statement) 7.2. 代入文 (assignment statement) 7.3. ...
https://man.plustar.jp/python/reference/index.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 7845
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... メントを用意しています。 はじめに ¶ 正規表現 regular expressions (REs や regexes または regex patterns と呼ばれます ... le will make this more obvious. Let's consider the expression a[bcd]*b . This matches the letter 'a' , zero or m ... special escape sequences that are valid in regular expressions, but not valid as Python string literals, now res ... re not recognized by Python, as opposed to regular expressions, now result in a DeprecationWarning and will even ...
https://man.plustar.jp/python/howto/regex.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 7781
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... [ ' line 1 \n ' , 'line 2 \n ' , ... ] # Generator expression -- returns iterator stripped_iter = ( line . strip ... 囲まれます。ジェネレータ式の形式は次のとおりです: ( expression for expr in sequence1 if condition1 for expr2 in s ... はなく角括弧) で、あとは同じです。 生成される出力は expression 部分の値を要素として並べたものになります。 if 節は ... なくても大丈夫です; あれば condition が真のときだけ expression が評価されて出力に追加されます。 ジェネレータ式は常 ...
https://man.plustar.jp/python/howto/functional.html - [similar]
PREV 1 2 3 4 NEXT