plot sin 03 数据区域边界线的位置 Code #!/usr/bin/env python # -*- coding: utf-8 -*- import numpy as np import matplotlib import matplotlib.pyplot as plt # Data to be represented X = np.linspace(-np.pi,+np.pi,256) Y = np.sin(X) # Actual plotting fig = plt.figur…