Heim > Artikel > Backend-Entwicklung > Wie zeichnet man eine Herzform in Python?
So zeichnen Sie eine Herzform in Python: Verwenden Sie Matplotlib und Numpy, um eine Herzform zu zeichnen. Der Code lautet [init = np.arange(-np.pi, np.pi, 0.001);plt.fill_between(x, y , facecolor='red')].
Verwandte Lernempfehlungen: Python-Tutorial
Python-Methode zum Zeichnen einer Herzform:
Python verwendet Matplotlib und Numpy, um eine Herzform zu zeichnen.
import matplotlib.pyplot as plt import numpy as np #初始化数据 init = np.arange(-np.pi, np.pi, 0.001) y = np.subtract(np.multiply(2, np.cos(init)), np.cos(np.multiply(2, init))) x = np.subtract(np.multiply(2, np.sin(init)), np.sin(np.multiply(2, init))) #画图 plt.plot(x, y) plt.fill_between(x, y, facecolor='red') plt.show()
Ergebnis:
Das obige ist der detaillierte Inhalt vonWie zeichnet man eine Herzform in Python?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!