#!/usr/bin/env python#dawf a cirle and print the x,yimport mathcenter = [10.0,10.0] #center pointrad = 10sep = 2*math.pi/360 #sep use 1 anglepoint = []for angle in range(181): x =center[0] + rad * math.cos(sep*angle) y =center[1] + rad * math.sin(sep*angle) point.append((round(x,3),round(y,3))) #round function save float with x.xxxprint point