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