Get your own Python server Result Size: 625 x 565
x
 
#Import cmath Library
import cmath  
#print base-10 log value of complex numbers
print (cmath.log10(2+ 3j))
print (cmath.log10(1+ 2j))
(0.5569716761534184+0.42682189085546657j)
(0.3494850021680094+0.480828578784234j)