# Python CodeRecipe|str()の使い方

HomeFunctions

# str()の例1

Convert the number 3.5 into an string:

    x = 
    str(3.5)

# str()の定義及び使い方

str()関数は、指定された valueを文字列に変換する。

# str()の構文

    str(object, encoding=encoding, errors=errors)

# str()の引数

オブジェクト 任意のオブジェクト。文字列に変換するオブジェクトを指定します。

符号化 オブジェクトのエンコーディング。デフォルトはUTF-8です。

エラー デコードが失敗した場合の対処方法を指定します。

# str()の例2

Convert a string into an integer:

    x = 
    int("12")

HomeFunctions