# welcome to softhunt.net # Python Program illustrating # numpy.tile() import numpy as np ans = np.tile(A = [1,2], reps = [2,2,2]) print(ans)