Python 程式碼繪製愛心
如何用 Python 程式碼繪製愛心?
使用Python 程式碼繪製愛心需要以下步驟:
#1. 導入matplotlib 函式庫
<code class="python">import matplotlib.pyplot as plt</code>
#2.定義 X 和Y 座標
使用Paramteric Equation (參數方程式) 來產生愛心形狀的X 和Y 座標:
<code class="python">theta = np.linspace(0, 2 * np.pi, 200) x = np.cos(theta) ** 3 y = np.sin(theta) ** 3</code>
#3. 繪製曲線
#使用plt.plot
函數來繪製愛心曲線:
<code class="python">plt.plot(x, y)</code>
#4. 設定圖形選項
設定線條寬度、顏色和標題:
<code class="python">plt.linewidth = 3 plt.color = 'red' plt.title('Heart')</code>
5. 顯示圖形
使用plt.show
函數來顯示繪製的愛心圖形:
<code class="python">plt.show()</code>
#完整程式碼:
<code class="python">import numpy as np import matplotlib.pyplot as plt theta = np.linspace(0, 2 * np.pi, 200) x = np.cos(theta) ** 3 y = np.sin(theta) ** 3 plt.plot(x, y) plt.linewidth = 3 plt.color = 'red' plt.title('Heart') plt.show()</code>
以上是python程式碼愛心怎麼寫簡單的詳細內容。更多資訊請關注PHP中文網其他相關文章!