a = [1, 2, 3] >>> b = [4, 5, 6] >>> c = a + b >>> print c [1, 2, 3, 4, 5, 6] ... Lists that contain consecutive integers are common, so Python provides a ...
確定! 回上一頁