Heim > Artikel > Backend-Entwicklung > Welche Funktion wird verwendet, um in Python einen Kreis zu zeichnen?
Python verwendet die Funktionen „figure()“ und „Circle()“ der matplotlb-Bibliothek, um einen Kreis dazwischen zu zeichnen, die Funktion „figur()“ wird zum Bestimmen der Leinwandgröße verwendet, während die Funktion „Circle()“ zum Konfigurieren der relevanten verwendet wird Geben Sie die Informationen zum Kreis ein und zeichnen Sie dann den Kreis.
Die Betriebsumgebung dieses Tutorials: Windows 7-System, Python 3-Version, Dell G3-Computer.
Python-Kreiszeichnungscode
from matplotlib.patches import Ellipse, Circle import matplotlib.pyplot as plt def plot_cicle(): fig = plt.figure() ax = fig.add_subplot(111) cir1 = Circle(xy = (0.0, 0.0), radius=2, alpha=0.5) ax.add_patch(cir1) x, y = 0, 0 ax.plot(x, y, 'ro') plt.axis('scaled') plt.axis('equal') #changes limits of x or y axis so that equal increments of x and y have the same length plt.show() plot_cicle()
Das obige ist der detaillierte Inhalt vonWelche Funktion wird verwendet, um in Python einen Kreis zu zeichnen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!