DrZhang We'll often encounter different datasets that we should combine into one. To conbine two datasets, like the ones in a and b, we use the lists' name and the + operator. >>> a = [1,2,3] >>> b = [4,5,6] >>> c = a + b >>> print(c) [1, 2, 3, 4, 5, 6]