You're using Extended Iterable Unpacking in wrong way. d = [x for x in range(7)] a, b, c, d, e, f, g = d print(a, b, c, d, e, f, g).
確定! 回上一頁