2025-05-16 【Python】タプルを作るのはカンマであり、丸括弧ではありません docs.python.org 今日のハマり。15分くらい溶かした。 >>> t = (10) >>> type(t) <class 'int'> >>> t = (10,) >>> type(t) <class 'tuple'>