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之数据六种类型的主要内容,如果未能解决你的问题,请参考以下文章