2011. 11. 4. 00:53
x1 = 3 + 4j
x2 = 2 - 5j
print x1*x2, x1+x2
(26-7j) (5-1j)
x = 4
y = 6
z = complex(4, 6)
print z
(4+6j)
w = z.conjugate() # z의 켤레 복소수
print w
(4-6j)
print (z.real , z.imag)
(4.0, 6.0)
'python' 카테고리의 다른 글
[python] (가명) 속성 및 연산자 메쏘드 (0) | 2011.11.12 |
---|---|
[python] 비트맵 bitmap 쓰기 (0) | 2011.11.04 |
[python] 삼항연산자 만들기 (1) | 2011.11.02 |
[python] 집합 Sets (0) | 2011.11.02 |
[python] 리스트 List (0) | 2011.11.02 |