--数字を文字列に変換 n = tonumber("55.5") --文字列を数字に変換 s = tostring(99.5) print(type(n)) print(type(s))