# Bug report ### Bug description: Input ```python tuple([1]) ``` Expected output: ```python (1) ``` However, I got this: ```python (1,) ``` But for multiple element list convert to tuple is working fine. ### CPython versions tested on: 3.9, 3.10, 3.11 ### Operating systems tested on: Linux, macOS, Windows