Python 3.6.5 ドキュメント 検索
Results of 1 - 8 of about 8 for stmt (0.062 sec.)
- 10. 完全な文法仕様 — Python 3.6.5 ドキュメント 12905
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
the input for the eval() functions. # NB: compound_stmt in single_input is followed by extra NEWLINE! sing...
le_input : NEWLINE | simple_stmt | compound_stmt NEWLINE file_input : ( NEWLINE | s...
ef [ ',' ]]] | '**' vfpdef [ ',' ] ) vfpdef : NAME stmt : simple_stmt | compound_stmt simple_stmt : small_...
stmt ( ';' small_stmt ) * [ ';' ] NEWLINE small_stmt : ( expr_stmt | del...
- https://man.plustar.jp/python/reference/grammar.html - [similar]
- 32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 9977
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
つずつにそれぞれ一つのクラスがあります (たとえば ast.stmt や ast.expr )。それに加えて、右辺のコンストラクタ一...
ばなりません。 lineno ¶ col_offset ¶ ast.expr や ast.stmt のサブクラスのインスタンスにはさらに lineno や col...
no value" for object. module Python { mod = Module(stmt* body) | Interactive(stmt* body) | Expression(expr...
al node but useful in Jython's typesystem. | Suite(stmt* body) stmt = FunctionDef(identifier name, argumen...
- https://man.plustar.jp/python/library/ast.html - [similar]
- 7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 9597
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
ことができます。単純文の構文は以下の通りです: simple_stmt ::= expression_stmt | assert_stmt | assignment_stm...
t | augmented_assignment_stmt | annotated_assignment_stmt | pass_stmt | del_stmt...
| return_stmt | yield_stmt | raise_stmt | break_stmt | continue_...
stmt | import_stmt | global_stmt | nonlocal_stmt 7.1. 式文 (expressio...
- https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
- 8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 9561
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
t ( z ) まとめると、以下のようになります: compound_stmt ::= if_stmt | while_stmt | for_stmt | try_stmt | w...
ith_stmt | funcdef | classdef | async_with_stmt | async_for...
_stmt | async_funcdef suite ::= stmt_list NEWLINE | NEWL...
INE INDENT statement + DEDENT statement ::= stmt_list NEWLINE | compound_stmt stmt_list ::= simple_...
- https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
- 27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 8241
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
と 1 つの公開クラスを持っています: timeit. timeit ( stmt='pass' , setup='pass' , timer=<default timer> , nu...
意の globals 引数が追加されました。 timeit. repeat ( stmt='pass' , setup='pass' , timer=<default timer> , re...
erf_counter() になりました。 class timeit. Timer ( stmt='pass' , setup='pass' , timer=<timer function> , g...
トフォーム依存です (モジュールの doctring を参照)。 stmt および setup には、複数行の文字列リテラルを含まない...
- https://man.plustar.jp/python/library/timeit.html - [similar]
- 9. トップレベル要素 — Python 3.6.5 ドキュメント 7555
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
文法の下に構文解析されます: interactive_input ::= [ stmt_list ] NEWLINE | compound_stmt NEWLINE 対話モードで...
- https://man.plustar.jp/python/reference/toplevel_components.html - [similar]
- 32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 7211
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ーケンスです。この構造の注意すべき重要な側面は、 if_stmt の中のキーワード if のような親ノードの型を識別する...
- https://man.plustar.jp/python/library/parser.html - [similar]
- What's New in Python 2.6 — Python 3.6.5 ドキュメント 7175
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
を作成する 2 つの便利関数が追加されています: repeat(stmt, setup, time, repeat, number) と timeit(stmt, setu...
- https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
PREV
1
NEXT