我的编程空间,编程开发者的网络收藏夹
学习永远不晚

python内置函数3-complex(

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

python内置函数3-complex(

Help on class complex in module __builtin__:


class complex(object)

 |  complex(real[, imag]) -> complex number

 |  

 |  Create a complex number from a real part and an optional imaginary part.

 |  This is equivalent to (real + imag*1j) where imag defaults to 0.

 |  

 |  Methods defined here:

 |  

 |  __abs__(...)

 |      x.__abs__() <==> abs(x)

 |  

 |  __add__(...)

 |      x.__add__(y) <==> x+y

 |  

 |  __coerce__(...)

 |      x.__coerce__(y) <==> coerce(x, y)

 |  

 |  __div__(...)

 |      x.__div__(y) <==> x/y

 |  

 |  __divmod__(...)

 |      x.__divmod__(y) <==> divmod(x, y)

 |  

 |  __eq__(...)

 |      x.__eq__(y) <==> x==y

 |  

 |  __float__(...)

 |      x.__float__() <==> float(x)

 |  

 |  __floordiv__(...)

 |      x.__floordiv__(y) <==> x//y

 |  

 |  __ge__(...)

 |      x.__ge__(y) <==> x>=y

 |  

 |  __getattribute__(...)

 |      x.__getattribute__('name') <==> x.name

 |  

 |  __getnewargs__(...)

 |  

 |  __gt__(...)

 |      x.__gt__(y) <==> x>y

 |  

 |  __hash__(...)

 |      x.__hash__() <==> hash(x)

 |  

 |  __int__(...)

 |      x.__int__() <==> int(x)

 |  

 |  __le__(...)

 |      x.__le__(y) <==> x<=y

 |  

 |  __long__(...)

 |      x.__long__() <==> long(x)

 |  

 |  __lt__(...)

 |      x.__lt__(y) <==> x<y

 |  

 |  __mod__(...)

 |      x.__mod__(y) <==> x%y

 |  

 |  __mul__(...)

 |      x.__mul__(y) <==> x*y

 |  

 |  __ne__(...)

 |      x.__ne__(y) <==> x!=y

 |  

 |  __neg__(...)

 |      x.__neg__() <==> -x

 |  

 |  __nonzero__(...)

 |      x.__nonzero__() <==> x != 0

 |  

 |  __pos__(...)

 |      x.__pos__() <==> +x

 |  

 |  __pow__(...)

 |      x.__pow__(y[, z]) <==> pow(x, y[, z])

 |  

 |  __radd__(...)

 |      x.__radd__(y) <==> y+x

 |  

 |  __rdiv__(...)

 |      x.__rdiv__(y) <==> y/x

 |  

 |  __rdivmod__(...)

 |      x.__rdivmod__(y) <==> divmod(y, x)

 |  

 |  __repr__(...)

 |      x.__repr__() <==> repr(x)

 |  

 |  __rfloordiv__(...)

 |      x.__rfloordiv__(y) <==> y//x

 |  

 |  __rmod__(...)

 |      x.__rmod__(y) <==> y%x

 |  

 |  __rmul__(...)

 |      x.__rmul__(y) <==> y*x

 |  

 |  __rpow__(...)

 |      y.__rpow__(x[, z]) <==> pow(x, y[, z])

 |  

 |  __rsub__(...)

 |      x.__rsub__(y) <==> y-x

 |  

 |  __rtruediv__(...)

 |      x.__rtruediv__(y) <==> y/x

 |  

 |  __str__(...)

 |      x.__str__() <==> str(x)

 |  

 |  __sub__(...)

 |      x.__sub__(y) <==> x-y

 |  

 |  __truediv__(...)

 |      x.__truediv__(y) <==> x/y

 |  

 |  conjugate(...)

 |      complex.conjugate() -> complex

 |      

 |      Returns the complex conjugate of its argument. (3-4j).conjugate() == 3+4j.

 |  

 |  ----------------------------------------------------------------------

 |  Data descriptors defined here:

 |  

 |  imag

 |      the imaginary part of a complex number

 |  

 |  real

 |      the real part of a complex number

 |  

 |  ----------------------------------------------------------------------

 |  Data and other attributes defined here:

 |  

 |  __new__ = <built-in method __new__ of type object>

 |      T.__new__(S, ...) -> a new object with type S, a subtype of T

 

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 function serves as a numeric conversion function like int(), long() 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.

The complex type is described in Numeric Types — int, float, long, complex.


中文说明:

创建一个值为real + imag * j的复数或者转化一个字符串或数为复数。如果第一个参数为字符串,则不需要指定第二个参数。


参数real: int, long, float或字符串;

参数imag: int, long, float。


>>> complex(5,3)

(5+3j)

>>> complex(7)

(7+0j)

>>> complex("56")

(56+0j)

>>> complex("7+8j")

(7+8j)

>>> complex("7 + 8j")

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

ValueError: complex() arg is a malformed string


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

python内置函数3-complex(

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

python内置函数3-complex(

Help on class complex in module __builtin__:class complex(object) |  complex(real[, imag]) -> complex number |   |  Crea
2023-01-31

Python 内置函数complex详解

英文文档: class complex([real[, imag]]) Return a complex number with the value real + imag*1j or convert a string or number
2022-06-04

python内置函数3-dir()

Help on built-in function dir in module __builtin__:dir(...)    dir([object]) -> list of strings        If called withou
2023-01-31

python内置函数3-delattr(

Help on built-in function delattr in module __builtin__:delattr(...)    delattr(object, name)        Delete a named attr
2023-01-31

python内置函数3-compile(

Help on built-in function compile in module __builtin__:compile(...)    compile(source, filename, mode[, flags[, dont_in
2023-01-31

python内置函数3-cmp()

Help on built-in function cmp in module __builtin__:cmp(...)    cmp(x, y) -> integer        Return negative if x
2023-01-31
2023-01-31

Python基础3 函数、递归、内置函数

本节内容1. 函数基本语法及特性2. 参数与局部变量3. 返回值嵌套函数4.递归5.匿名函数6.函数式编程介绍7.高阶函数8.内置函数温故知新1. 集合主要作用: 去重关系测试, 交集\差集\并集\反向(对称)差集>>> a = {1,2,
2023-01-31

python 内置函数

python内置了一系列的常用函数,以便于我们使用python。基本的数据操作基本都是一些数学运算(当然除了加减乘除)、逻辑操作、集合操作、基本IO操作,然后就是对于语言自身的反射操作,还有就是字符串操作。官方文档:https://docs
2023-01-30

python内置函数

什么是内置函数? 就是python给你提供的,拿来直接用的函数, 比如print 和 input等等. 截止到python版本3.6.2 python一共提供了68个内置函数. 他们就是python直接提供给我们的,有一些我们已经见过了.
2023-01-30

Python内置数据结构3

解构In [8]: lst = [1,2]In [9]: lstOut[9]: [1, 2]In [10]: first,second = lst  #解构In [11]: print(first,second)1 2按照元素顺序,把线性结
2023-01-31

Python的内置函数

1.什么是内置函数?  就是python给你提供的. 拿来直接⽤的函数, 比如print., input等等. 截止到python版本3.6 python一共提供了68个内置函数. 他们就是python直接提供给我们的Makedown地址:
2023-01-31

python学习3-内置数据结构3-by

一、字符串与bytesstr是文本系列,有编码,bytes是字节系列,没有编码,文本的编码是字符如何用字节来表示。都不可变,python3默认使用utf8。文本转换编码:s.encode(['编码方式'])编码转换文本:s.decode([
2023-01-31

Python之内置函数

'''内置函数 :    作用域相关(2) :        locals : 返回当前局部作用域内的所有内容        globals : 返回全局作用域内的所有内容    基础数据类型相关(38) :        和数字相关 : 
2023-01-31

python内置函数1

1.r=compile(s,"","exec")  compile()将字符串编译成python代码2.exec(r)  执行python代码3.eval("8*6") eval("")里面只能执行表达式,执行eval()会
2023-01-31

python 函数3

函数>>> def ds(x):                         return 2 * x + 1>>> ds(5)11>>> lambda x : 2 * x + 1                 
2023-01-31

python 函数(3)

1. 函数小高级 ( 5* )1 函数名可以当作变量来使用def func(): print(123)v1 = func # func代表函数的地址func()v1() # v1、func的函数地址相同,执行调用的函数也相同de
2023-01-31

Python系列-python内置函数

本文转载自:http://www.javaxxz.com/thread-359303-1-1.htmlabs(x)返回数字的绝对值,参数可以是整数、也可以是浮点数。如果是复数,则返回它的大小all(iterable)对参数中的所有元素进行迭
2023-01-31

python学习3-内置数据结构3-字符

字符串是集合类型1、定义s = 'hello python's = "hellp python"以上2种没有区别s = '''hello python'''s = """hello python"""以上2种没有区别区别在于三引号可以定义多
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录