1#import numpy and matplotlib library
2import numpy as np
3import matplotlib.pyplot as plt
4
5
6plt.axes(projection = 'polar')
7
8r = 3
9
10rads = np.arange(0, (2 * np.pi), 0.01)
11
12# plotting the circle
13for i in rads:
14 plt.polar(i, r, 'g.')
15
16# display the Polar plot
17plt.show()
18