import numpy as np
# Create a 2-dimensional array with 3 rows and 2 columns
arr_two_dim = np.array([(1, 2), (3, 4), (5, 6)])
# Create a 1-dimensional array with 4 elements
arr_one_dim = np.array([7, 8, 9, 10])
# Print the shape of each array
print("2-D Array Shape:", arr_two_dim.shape)
print("1-D Array Shape:", arr_one_dim.shape)