﻿from pylab import *
from cmath import *

for k in range(0,8):
    z=2*exp(1j*2*k*pi/8)
    plot(z.real,z.imag,'r.',markersize=12)
show()

