IT 240 Homework One - DePaul University

Unfortunately, x + yj does not work, because Python thinks you're using a variable named yj. Also, the value 1 + j is not a complex number: Python assumes you mean a variable named j unless there is an int or a float directly in front of it. Use 1 + 1j instead. Try it out Just to get familiar with complex numbers, at the Python prompt try ................
................