# multiplication objects x = 'hello' * 5 print(x) # hellohellohellohellohello x = [1,2,3] * 3 print(x) # [1,2,3,1,2,3,1,2,3] x = [[1,2,3]] * 3 print(x) # [[1,2,3],[1,2,3],[1,2,3]]