# Python CodeRecipe|ascii()の使い方

HomeFunctions

# ascii()の例1

x = ascii("My name is Python")

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

ascii()関数は可読フォーマットで任意のオブジェクトのバージョン(文字列、タプル、リストなど)。 ascii()関数はascii以外のエスケープ文字を含む文字:エーはビーに替わります。

# ascii()の構文

ascii(object)

# ascii()の引数

オブジェクト String、List、Tuple、Dictionaryなどのオブジェクト。

HomeFunctions