Browsing Korean translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions and Korean guidelines.
615 of 16 results
6.
Each clause should be on its own logical line, followed by a block of statements. The ``if`` and ``elif`` clauses are followed by an expression, while all clauses end with a colon. (:)
각 절은 반드시 각 논리행에 적혀있어야 하며 그 절 다음에는 명령문이 적힌 블록이 있어야 합니다. ``if`` 와 ``elif`` 절 뒤에는 표현식과 콜론(:) 순으로 적힙니다.
Translated by baekansi
Reviewed by baekansi
Located in ../../source/conditional.rst:25
7.
Examples are::
::
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:29
8.
The expressions in the if statement are evaluated in order, from first to last. When an expression evaluates to true, the block corresponding to that statement is executed. When control reaches the end of the block, it proceeds to the statement following the if statement.
if 문에 적인 표현식은 순서대로 계산됩니다. 표현식이 참으로 계산되면, 그 명령문 밑에 적힌 블록이 실행됩니다. 제어 흐름이 블록 끝에 도달하면 if 문 다음에 적힌 명령문으로 흐름이 넘어갑니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:45
9.
If all expressions evaluate to false, the block associated with the ``else`` clause is executed, if the ``else`` clause is present.
모든 표현식이 거짓으로 계산되면, ``else`` 이 있는 경우 ``else`` 절 밑에 있는 명령문이 실행됩니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:51
10.
While Statement
while 문
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:58
11.
The while statement executes a block of code while an expression evaluates true. For example::
while 문은 표현식이 참값인 동안 블록에 적힌 코드를 반복해서 실행합니다. ::
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:60
12.
The expression is evaluated when while statement is first reached, and then each time control reaches the end of the block. When the expression return a false value, the statement after the while statement is executed.
표현식은 while 문에 처음 도달했을 때 계산되며, 제어 흐름은 매번 블록 끝에 도달합니다. 표현식이 거짓값을 반환하면 while 문 아래에 있는 명령문이 실행됩니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:80
13.
Ren'Py does not have continue, break, or for statements. Continue and break statements can be replaced by jumps to labels placed before or after the while loop, respectively. The first example of a while loop, above, shows how a while loop can replace a for statement.
렌파이에는 countinue, break, for 문이 없습니다. continue 와 break 문은 while 반복문 앞이나 뒤에 특정 레이블로 점프할 수 있는 jump 문을 입력하는 것으로 대체할 수 있습니다. 위의 예제 스크립트에서 첫 번째 while 문은 while문이 for 문을 대체할 수 있는 방법을 보여주고 있습니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:84
14.
Pass Statement
pass 문
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:93
15.
The pass statement can be used when a block is required, but no statement is suitable. It does nothing.
pass 문은 블록이 있어야하지만 적당한 명령문이 없는 경우에 사용할 수 있습니다. pass문은 아무 동작을 하지 않습니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:95
615 of 16 results

This translation is managed by Launchpad Korean Translators, assigned by Launchpad Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: baekansi.