「compound statement」を含む例文一覧(6)

  • Compound statements
    7. 複合文 (compound statement) - Python
  • 7. Compound statements
    7. 複合文 (compound statement) - Python
  • Statements cannotcross logical line boundaries except where NEWLINE is allowed by the syntax (e.g., between statements in compound statements).A logical line is constructed from one or more physical lines by following the explicit or implicit line joining rules.
    構文上許されている場合(複合文: compound statement 中の実行文: statement) を除いて、実行文は論理行間にまたがることはできません。 論理行は一行またはそれ以上の 物理行(physical line) からなり、物理行の末尾には明示的または非明示的な 行連結(line joining) 規則が続きます。 - Python
  • The clause headers of a particular compound statement are all at the same indentation level.Each clause header begins with a uniquely identifying keyword and endswith a colon.
    特定の複合文を構成する節のヘッダ部分は、全て同じインデントレベルになります。 各々の節ヘッダ行は一意に識別されるキーワードから始まり、コロンで終わります。 - Python
  • Note that a (top-level) compound statement must be followed by a blankline in interactive mode; this is needed to help the parser detect the end of the input.
    対話モードでは、(トップレベルの) 複合文の最後に空白行を入れなくてはならないことに注意してください; これは、複合文の終端をパーザが検出するための手がかりとして必要です。 - Python
  • The syntax for a complete Python program is that for file input,described in the next section.The interpreter may also be invoked in interactive mode; in this case,it does not read and execute a complete program but reads and executesone statement (possibly compound) at a time.
    完全な Python プログラムの構文は、下の節で述べるファイル入力のためのものです。 インタプリタは、対話的モード (interactive mode) で起動されることもあります; この場合、インタプリタは完全なプログラムを読んで実行するのではなく、一度に単一の実行文 (複合文のときもあります) を読み込んで実行します。 - Python

例文データの著作権について