ホームページ  >  記事  >  バックエンド開発  >  Python チュートリアル - はじめに

Python チュートリアル - はじめに

王林
王林オリジナル
2024-08-25 06:01:50378ブラウズ

Python は、現在、特に AI テクノロジーの台頭により最も人気のあるプログラミング言語の 1 つです。 Python は、Web アプリケーション、バックエンド サービス、データ サイエンスや機械学習など、さまざまなものを開発するための多目的プログラミング言語です。

設定

Python でコーディングするための準備は次のとおりです。

  1. Python をダウンロードしてインストールします。
  2. Visual Studio Code などの Python コードの作成には、任意のテキスト エディターや、PyCharm などの専用 IDE を使用できます。

最初のコードの作成

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 で一般的に使用されるデータ型のリストです。

Data Type Value
Integer non-decimal number
Float decimal number
String Alphanumeric characters
Boolean True or False

オペレーター

Python には基本的な算術演算子が多数あります。これらの演算子は、整数や浮動小数点などの数値データ型の計算を実行するために使用できます。

Operator Description
+ add operation
- substract operation
* multiply operation
/ division operation
// floor division operation
% modulo operation (get the remainder from division operation)
** Perform the operation of raising a number to the power of a number

これは、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 Tutorial - ntroduction

例 1 - 長方形の面積の計算

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}")

出力

Python Tutorial - ntroduction

例 2 - 割引価格を取得する

割引適用後の商品の価格を計算するプログラムを作成してみましょう。このプログラムを使用すると、ユーザーは実際の価格と割引を入力できます。その後、プログラムは割引価格を返します。

# 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 Tutorial - ntroduction

情報源

  • Python 公式ページ。
  • Python チュートリアル。

この記事が Python の学習に役立つことを願っています。ご意見がございましたら、コメント欄にご記入ください。

以上がPython チュートリアル - はじめにの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。