# Python CodeRecipe|chr()の使い方

HomeFunctions

# chr()の例1

x = chr(97)

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

chr()関数は文字を返します。 指定されたユニコードを表す。

# chr()の構文

chr(number)

# chr()の引数

number:有効なUnicodeコードポイントを表す整数

HomeFunctions