Texts: Basic Concepts of Python Programming (20 pts)
Python programming language is yet another language based on English. It can be translated into English, and vice versa. Let's do some translation practice.
1. Please translate the following Python commands into English:
a. Import numpy. (2 pts)
b. Assign the mean of [1, 2, 3] to variable x. (4 pts)
c. Print "x is x". (4 pts)
2. Please translate the following English requirements into Python commands:
a. Load the numpy plugin. (2 pts)
b. I will calculate a lot of things related to the vector [1, 2, 3]. So, let's store [1, 2, 3] into a variable called z. (4 pts)
c. I want to calculate the mean, max, min, and standard deviation of the vector stored in variable z. (4 pts)