Python を初めて使用する場合は、基本的な操作、データ型、条件付きロジックを理解することが不可欠です。いくつかの基本的なトピックをまとめてみましょう。各トピックを例を挙げて説明します。
Python には、数学的演算を簡単に実行できるさまざまな演算子が用意されています。最も一般的な演算子の概要を次に示します。
Syntax | Action | Example | Output |
---|---|---|---|
* | Multiply | 4 * 10 | 40 |
Addition | 7 9 | 16 | |
- | Subtract | 23 - 4 | 19 |
/ | Division | 27 / 3 | 9 |
** | Power | 3 ** 2 | 9 |
% | Modulo | 7 % 4 | 3 |
これらの演算子は、コード内で数値を扱うのに役立ちます。以下にいくつかの例を示します:
# Multiplication result = 4 * 10 print(result) # Output: 40 # Addition total = 7 + 9 print(total) # Output: 16 # Power squared = 3 ** 2 print(squared) # Output: 9
次の演算子を使用して変数に値を代入することもできます:
# Define total spend amount total_spend = 3150.96 print(total_spend) # Output: 3150.96
Python では、さまざまな種類のタスクに適したさまざまな方法でデータを保存できます。
文字列: テキストに使用されます。一重引用符または二重引用符を使用して文字列を定義できます。
# Defining a string customer_name = 'George Boorman' print(customer_name) # Double quotes also work customer_name = "George Boorman"
リスト: リストは、複数の値を含めることができる順序付けられたコレクションです。
# Creating a list prices = [10, 20, 30, 15, 25, 35] # Accessing the first item print(prices[0]) # Output: 10
辞書: 辞書にはキーと値のペアが保存され、キーに基づいて値を検索できます。
# Creating a dictionary products_dict = { "AG32": 10, "HT91": 20, "PL65": 30, "OS31": 15, "KB07": 25, "TR48": 35 } # Accessing a value by key print(products_dict["AG32"]) # Output: 10
セットとタプル:
# Creating a set prices_set = {10, 20, 30, 15, 25, 35} # Creating a tuple prices_tuple = (10, 20, 30, 15, 25, 35)
Python には、コード内の意思決定に不可欠な条件を評価するためのキーワードがいくつか含まれています。
Keyword | Function |
---|---|
and | Evaluate if multiple conditions are true |
or | Evaluate if one or more conditions are true |
in | Check if a value exists in a data structure |
not | Evaluate if a value is not in a data structure |
これらのキーワードの実際の動作を理解するために、いくつかの例を見てみましょう:
# Multiplication result = 4 * 10 print(result) # Output: 40 # Addition total = 7 + 9 print(total) # Output: 16 # Power squared = 3 ** 2 print(squared) # Output: 9
# Define total spend amount total_spend = 3150.96 print(total_spend) # Output: 3150.96
# Defining a string customer_name = 'George Boorman' print(customer_name) # Double quotes also work customer_name = "George Boorman"
# Creating a list prices = [10, 20, 30, 15, 25, 35] # Accessing the first item print(prices[0]) # Output: 10
この概要では、Python の算術演算、さまざまなデータ型、条件付きキーワードの基本について説明しました。これらは、より複雑なプログラムを構築するのに役立つ基本的な概念です。
以上がPython : 算術演算、データ型、条件付きロジックの基本概念の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。