Which of the following statements limits both x and y axes to the interval [0, 6]? A. plt.xylim(0, 6) B. plt.axis([0, 6, 0, 6]) C. plt.ylim(0, 6) D. plt.xlim(0, 6) Answer Workspace Report Discuss Answer with explanation Answer: Option B Explanation plt.axis([0, 6, 0, 6]) statement limits both x and y axes to the interval [0, 6]. Workspace
Discuss about the question