Python は、現在、特に AI テクノロジーの台頭により最も人気のあるプログラミング言語の 1 つです。 Python は、Web アプリケーション、バックエンド サービス、データ サイエンスや機械学習など、さまざまなものを開発するための多目的プログラミング言語です。
Python でコーディングするための準備は次のとおりです:
main.py という拡張子が .py の新しいファイルを作成します。次に、このコードを記述します。
print("Hello World!")
このコマンドを実行して Python コードを実行します。
python main.py
これが出力です。
Hello World!
上記のコードに基づいて、print() 関数は Hello World! を表示します。文章。
変数は、整数、浮動小数点数、文字列 (英数字の集まり) などの値を格納する場所です。これは Python での変数の使用例です。
number = 42 username = "John Doe" price = 2.95
変数の値を表示するには、print() 関数を使用します。
number = 42 username = "John Doe" price = 2.95 # display a value from variable print("this is a number", number) print("price: ", price) # using formatting print(f"hello, my username is {username}")
これが出力です。
this is a number 42 price: 2.95 hello, my username is John Doe
これは、Python で一般的に使用されるデータ型のリストです。
データ型 | 価値 |
---|---|
整数 | 10 進数以外の数値 |
フロート | 10進数 |
弦 | 英数字 |
ブール値 | 正誤 |
Python には基本的な算術演算子が多数あります。これらの演算子は、整数や浮動小数点などの数値データ型の計算を実行するために使用できます。
オペレーター | 説明 |
---|---|
オペレーションの追加 | |
- | 減算演算 |
* | 乗算演算 |
/ | 除算演算 |
// | フロア分割操作 |
% | モジュロ演算(除算演算の余りを求める) |
** | 数値の累乗演算を実行します |
これは、Python での演算子の使用例です。
first = 4 second = 2 addition = first second subtraction = first - second multiplication = first * second division = first / second mod = first % second square_of_first = first ** 2 print(f'{first} {second} = {addition}') print(f'{first} - {second} = {subtraction}') print(f'{first} * {second} = {multiplication}') print(f'{first} / {second} = {division}') print(f'{first} % {second} = {mod}') print(f'{first} ** {2} = {square_of_first}')
出力
4 2 = 6 4 - 2 = 2 4 * 2 = 8 4 / 2 = 2.0 4 % 2 = 0 4 ** 2 = 16
// 演算子は除算を実行し、除算結果のフロアを返します。
result = 29 // 5 # returns 5 (actual value before floor operation: 5.8)
input() 関数はユーザーからの入力を読み取ります。この関数は、Python で対話型プログラムを作成する場合に便利です。デフォルトでは、input() は String データ型を返します。
これは、input() 関数の基本的な使用例です。
# get username from input username = input("enter username: ") # get age from input # the int() function converts string into integer data type age = int(input("enter age: ")) print(f"username: {username}") print(f"age: {age}")
出力
Pythonで長方形の面積計算プログラムを作ってみましょう。このプログラムを使用すると、ユーザーは長方形の長さと幅を入力できます。次に、プログラムは長方形の面積を計算し、それをユーザーに表示します。
# get length from user input length = int(input("enter length: ")) # get width from user input width = int(input("enter width: ")) # calculate the area of rectangle area = length * width # display the result print(f"area of rectangle: {area}")
出力
割引適用後の商品の価格を計算するプログラムを作成してみましょう。このプログラムを使用すると、ユーザーは実際の価格と割引を入力できます。その後、プログラムは割引価格を返します。
# get price from user input price = int(input("enter price: ")) # get discount from user input discount = int(input("enter discount: ")) # calculate the discounted price discounted_price = price - (price * (discount / 100)) # display the result print(f"original price: {price}") print(f"discounted price: {discounted_price}")
出力
この記事が Python の学習に役立つことを願っています。ご意見がございましたら、コメント欄にご記入ください。
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3