Python 構文: 変数、データ型、条件文、ループ

変数とデータ型

Python は動的に型指定されるプログラミング言語です。つまり、使用する前に変数の型を宣言する必要はありません。 以下に変数宣言の例といくつかの一般的なデータ型を示します。

変数宣言:

variable_name = value

一般的なデータ型:

  • 整数( int): age = 25
  • 浮動小数点数( float): pi = 3.14
  • 文字列( str): name = "John"
  • ブール値( bool): is_true = True

 

条件文

の条件文は、 Python 条件を確認し、評価結果に基づいて文を実行するために使用されます。 、 ifelse および elif(else if) 構造は次のように使用されます。

if 声明:

if condition:  
    # Execute this block if condition is True  

else 声明:

else:  
    # Execute this block if no preceding if statement is True  

elif (else if ) 声明:

elif condition:  
    # Execute this block if condition is True and no preceding if or else statement is True  

 

ループ

Python for ループとループ という 2 つの一般的に使用されるループ タイプをサポートし while 、ステートメントの繰り返し実行を可能にします。

for ループ:

for variable in sequence:  
    # Execute statements for each value in the sequence  

while ループ:

while condition:  
    # Execute statements while the condition is True  

 

具体例:

# Variable declaration  
age = 25  
name = "John"  
  
# Conditional statement  
if age >= 18:  
    print("You are of legal age.")  
else:  
    print("You are not of legal age.")  
  
# Loop  
for i in range(5):  
    print("Hello there!")  
  
count = 0  
while count < 5:  
    print("Loop number:", count)  
    count += 1  

上記のコードを実行すると、経過時間をチェックして適切なメッセージを出力し、ループ Hello there!  を使用してメッセージを 5 回ループし for 、最後に while ループの値を出力します。