python-small-examples
@author jackzhenguo @desc 创建复数 @date 2019/2/13
7 创建复数
创建一个复数
In
[
1
]:
complex
(
1
,
2
)
Out
[
1
]:
(
1
+
2j
)
[上一个例子](/python-small-examples/md/6.html) [下一个例子](/python-small-examples/md/8.html)