Comment dessiner une forme de coeur en python : utilisez matplotlib et numpy pour dessiner une forme de coeur, le code est [init = np.arange(-np.pi, np.pi, 0.001);plt.fill_between (x, y, facecolor='rouge')].
Recommandations d'apprentissage associées : Tutoriel Python
Comment dessiner un cœur en python :
Python utilise matplotlib et numpy pour dessiner un cœur.
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()
Résultat :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!