matplotlib draw circle code example
Example 1: plt plot circle
import matplotlib.pyplot as plt
circle1 = plt.Circle((0, 0), 0.2, color='r')
circle2 = plt.Circle((0.5, 0.5), 0.2, color='blue')
circle3 = plt.Circle((1, 1), 0.2, color='g', clip_on=False)
fig, ax = plt.subplots()
ax.add_patch(circle1)
ax.add_patch(circle2)
ax.add_patch(circle3)
fig.savefig('plotcircles.png')
Example 2: python how to draw a circle
import turtle
turtle.circle(100)
Example 3: python how to draw a circle
import turtle
turtle.circle(200)