1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Python if for whileの違い ~簡単に~

Posted at

if、for、whileは、Pythonにおける制御構造の3つの基本的なタイプです。

if文は、条件が真である場合にのみ、特定の処理を実行するために使用されます。例えば、次のコードでは、変数xが10より大きい場合にのみ、メッセージが表示されます。

x = 15
if x > 10:
    print("x is greater than 10")

for文は、反復可能なオブジェクト(リストや文字列など)の要素を順番に取り出して処理するために使用されます。例えば、次のコードでは、リスト[1, 2, 3]の各要素が順番に取り出され、それらが表示されます。

for i in [1, 2, 3]:
    print(i)

while文は、条件が真である間、特定の処理を繰り返し実行するために使用されます。例えば、次のコードでは、変数iが10より小さい間、その値が表示され続けます。

i = 0
while i < 10:
    print(i)
    i += 1

これら3つの制御構造は、それぞれ異なる目的で使用されます。適切な制御構造を選択することが、プログラムを効率的かつ正確に実装することに繋がります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?