Logo Making
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
circle = plt.Circle((0, 0), radius=0.5, color=’red’)
ax.add_artist(circle)
ax.set_aspect(‘equal’)
plt.axis(‘off’)
plt.show()
Word to PDF Converter