Create a function named mean_var_std() that uses Numpy to output the mean,
variance, and standard deviation of a 3 x 3 matrix. The input of the function
should be a list containing 9 digits. The function should convert the list
into a 3 x 3 Numpy array, and then print the mean, variance, and standard
deviation along both axis and for the flattened matrix.
For example:
mean_var_std([0,1,2,3,4,5,6,7,8])