python之数据六种类型

Posted 魅力男神

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之数据六种类型相关的知识,希望对你有一定的参考价值。

数据类型里面的是元素

元素左边从0开始,右边从-1开始

 

可变数据类型

list

(123,dfjk)

 

dictionary

 

不可变数据类型

tuple

(dkjf,123)  

 

set

[sdlkf,123]

 

number

数值四种类型:int,float,bool,complex      

>>>a, b, c, d = 20, 5.5, True, 4+3j
>>> print(type(a), type(b), type(c), type(d))
<class ‘int‘> <class ‘float‘> <class ‘bool‘> <class ‘complex‘>

string

str = Runoob

(str[1:-1])

 

以上是关于python之数据六种类型的主要内容,如果未能解决你的问题,请参考以下文章

【技术贴】python数据类型之列表

python之数据类型(数字与列表)

Python之编写测试用例,unittest模块中的TestCase类中的六种断言方法,以及setUp()函数。

JS中六种数据类型——NumberstringObject

JS中六种数据类型——Number (转)

GraphQL 响应类型/片段之争