python Python エラー TypeError: unsupported operand type(s) for +: ‘int’ and ‘str’ 直訳 タイプエラー:「+」にはサポートされていないオペランドの型だよ:intとstr 型が違うデータ(文字列(string型)と数字(int))を「+」で処理することはできないということ # エラーとなるサンプル x = 1 y = ... 2022.10.18 python