Python 内置函数complex详解
英文文档:
class complex([real[, imag]])
Return a complex number with the value real + imag*1j or convert a string or number to a complex number. If the first parameter is a string, it will be interpreted as a complex number and the function must be called without a second parameter. The second parameter can never be a string. Each argument may be any numeric type (including complex). If imag is omitted, it defaults to zero and the constructor serves as a numeric conversion like int and float. If both arguments are omitted, returns 0j.
Note
When converting from a string, the string must not contain whitespace around the central + or - operator. For example, complex('1+2j') is fine, but complex('1 + 2j') raises ValueError.
说明:
1. 函数功能,返回一个复数。有两个可选参数。
2. 当两个参数都不提供时,返回复数 0j。
>>> complex() 0j
3. 当第一个参数为字符串时,调用时不能提供第二个参数。此时字符串参数,需是一个能表示复数的字符串,而且加号或者减号左右不能出现空格。
>>> complex('1+2j',2) #第一个参数为字符串,不能接受第二个参数 Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> complex('1+2j',2) TypeError: complex() can't take second arg if first is a string >>> complex('1 + 2j') #不能有空格 Traceback (most recent call last): File "<pyshell#3>", line 1, in <module> complex('1 + 2j') ValueError: complex() arg is a malformed string
4. 当第一个参数为int或者float时,第二个参数可为空,表示虚部为0;如果提供第二个参数,第二个参数也需为int或者float。
>>> complex(2) (2+0j) >>> complex(2.1,-3.4) (2.1-3.4j)
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
- Python 内置函数进制转换的用法(十进制转二进制、八进制、十六进制)
- python中的内置函数getattr()介绍及示例
- Python常用内置函数总结
- Python内置函数bin() oct()等实现进制转换
- Python内置函数——__import__ 的使用方法
- Python内置函数dir详解
- Python内置函数Type()函数一个有趣的用法
- python中的内置函数max()和min()及mas()函数的高级用法
- Python内置函数 next的具体使用方法
- Python标准库内置函数complex介绍
- Python内置函数的用法实例教程
- Python max内置函数详细介绍
- Python内置函数—vars的具体使用方法
- 深入理解Python3 内置函数大全
- Python内置函数reversed()用法分析
- Python学习教程之常用的内置函数大全
- Python两个内置函数 locals 和globals(学习笔记)
- python中68个内置函数的总结与介绍
相关文章
python sqlalchemy动态修改tablename两种实现方式
这篇文章主要介绍了python sqlalchemy动态修改tablename两种实现方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧2023-03-03详解Pandas中stack()和unstack()的使用技巧
当你在处理包含某种序列(例如时间序列数据)的变量的数据集时,数据通常需要进行重塑。Pandas 提供了各种用于重塑 DataFrame 的内置方法。其中,stack() 和 unstack() 是最流行的,本文总结了这两个方法的7种使用技巧,需要的可以参考一下2022-03-03Python 操作mysql数据库查询之fetchone(), fetchmany(), fetchall()用法示例
这篇文章主要介绍了Python 操作mysql数据库查询之fetchone(), fetchmany(), fetchall()用法,结合实例形式分析了Python使用pymysql模块的fetchone(), fetchmany(), fetchall()方法进行mysql数据库查询的操作技巧,需要的朋友可以参考下2019-10-10
最新评论