import numpy as np # Сreating a 1D array of zeros with 5 elements zeros_1d = np.zeros(5) print(f'1D array of 5 zeros: {zeros_1d}') # Сreating a 1D array of zeros with specifying dtype zeros_1d_int = np.zeros(5, dtype=np.int8) print(f'1D array of 5 zeros of dtype int8: {zeros_1d_int}') # Сreating a 2D array of zeros of shape 5x3 zeros_2d = np.zeros((5, 3)) print(f'2D array of zeros of shape 5x3: {zeros_2d}') # Create an array of zeros of size 5 zeros_array_1d = np.zeros(5) # Create an array of zeros of shape 2x4 zeros_array_2d = np.zeros((2, 4)) # Create an array of ones of size 3 ones_array_1d = np.ones(3) # create an array of ones of shape 2x3 ones_array_2d = np.ones((2, 3)) # Create an array of sevens of shape 2x2 sevens_array_2d = np.full((2, 2), 7) print(f'1D zeros array: {zeros_array_1d}, 1D ones array: {ones_array_1d}') print(f'2D zeros array:\n{zeros_array_2d}') print(f'2D ones array:\n{ones_array_2d}') print(f'2D sevens array:\n{sevens_array_2d}')