Answer the question
In order to leave comments, you need to log in
How to write arctg(ln z) in python?
How can you write arctg(ln z) in python. The expression below does not help.
import math
from cmath import arctan
Answer the question
In order to leave comments, you need to log in
Because there is no arctan function in cmath library. There is atan and log.
Maybe because it's called atan. Was it difficult to look into the documentation?
In general, at least study the dir function. For example,
import cmath
dir(cmath)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question