In c/c++ we use to declare three-dimensional using the following syntax.
`long long dp[20][180][2]; `
memset(dp, -1, sizeof(dp));
My code:
import numpy as np
x = np.zeros((20,180,2))
How can we declare and initialize a three-dimensional array in python?