1. y=f(x) #y=f(x)from numpy import *import matplotlib.pyplot as pltxrange = [0,10]def f(x): return sin(x)x_line = arange(xrange[0], xrange[1], 0.1) # 0.1 간격으로 점을 찍는다y_line = f(x_line)plt.plot(x_line, y_line)plt.xlabel('x'); plt.ylabel('y'); plt.title('y=f(x)')plt.show() 2. f(x,y)=0from numpy import *import matplotlib.pyplot as pltdef f(x,y): return 0.01*x**2+0.008*x*y-0.013*y**2+0.15*x+0.003*..