Python で組み込み関数を使用する方法
Python は、組み込み関数の豊富なライブラリを備えたシンプルで習得しやすいプログラミング言語です。より効率的に作業できるようコードを作成します。この記事では、いくつかの一般的な Python 組み込み関数を紹介し、読者がこれらの関数をよりよく理解して使用できるように、具体的なコード例を示します。
print()
print()
関数は、コンテンツをコンソールに出力するために使用されます。テキスト、変数、式などをパラメータとしてこの関数に渡して、出力関数を実装できます。
サンプルコード:
print("Hello, World!") name = "Alice" print("My name is", name) x = 10 y = 20 print("The sum of", x, "and", y, "is", x+y)
len()
len()
関数は次の目的で使用されます。 get 文字列、リスト、タプルなどのオブジェクトの長さ。オブジェクト内の要素の数を返します。
サンプルコード:
string = "Hello, World!" print("The length of the string is", len(string)) my_list = [1, 2, 3, 4, 5] print("The length of the list is", len(my_list)) my_tuple = (1, 2, 3) print("The length of the tuple is", len(my_tuple))
input()
input()
関数は次の目的で使用されます。 read from コンソールはユーザー入力を取得します。オプションのプロンプトをパラメータとして受け入れ、入力を文字列として返します。
サンプルコード:
name = input("Please enter your name: ") print("Hello,", name) age = input("Please enter your age: ") print("You are", age, "years old.")
type()
type()
関数は次の目的で使用されます。オブジェクトのタイプを取得します。オブジェクトのタイプを表す文字列を返します。
サンプルコード:
x = 10 print("The type of x is", type(x)) y = "Hello, World!" print("The type of y is", type(y)) z = [1, 2, 3] print("The type of z is", type(z))
range()
range()
関数は次の目的で使用されます。生成 整数のシーケンス。ループの数を制御するためにループ内でよく使用されます。
サンプルコード:
for i in range(1, 6): print(i) my_list = list(range(1, 6)) print(my_list)
str()
str()
関数は次の目的で使用されます。他のタイプのオブジェクトを文字列に変換します。
サンプルコード:
x = 10 print("The type of x is", type(x)) x_str = str(x) print("The type of x_str is", type(x_str)) y = 3.14 print("The type of y is", type(y)) y_str = str(y) print("The type of y_str is", type(y_str))
int()
int()
関数は次の目的で使用されます。文字列または浮動小数点数を整数に変換します。
サンプル コード:
x = "10" print("The type of x is", type(x)) x_int = int(x) print("The type of x_int is", type(x_int)) y = 3.14 print("The type of y is", type(y)) y_int = int(y) print("The type of y_int is", type(y_int))
これらは Python の組み込み関数のほんの一部であり、他にも多くの便利な関数が探索して使用するのを待っています。これらの組み込み関数の使用をマスターすると、プログラミングの効率が大幅に向上します。この記事が読者にとって役立つことを願っています。
以上がPython で組み込み関数を使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。