编写名为make_complex的函数
时间: 2023-08-11 20:04:07 浏览: 67
param_ctor_func.rar_Make It!
好的,以下是使用 Python 编写的 make_complex 函数示例,用于返回给定实部和虚部的复数:
```python
def make_complex(real_part, imaginary_part):
return complex(real_part, imaginary_part)
```
该函数在内部使用 Python 的 complex 类创建并返回一个复数。可以像下面这样调用该函数:
```python
>>> z = make_complex(2, 3)
>>> print(z)
(2+3j)
```
在此示例中,我们将 2 指定为实部,将 3 指定为虚部,然后通过调用 make_complex 函数创建了一个复数对象。
阅读全文