import numpy as np import matplotlib.pyplot as plt fig, ax = plt.subplots() x = np.linspace(0,1) ax.plot(x, x, 'o') ax.annotate('default line', ...
確定! 回上一頁