小飞侠带你精通Python网络编程系列04-Python内置的数据类型
Posted xiaofeixiashixunying
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小飞侠带你精通Python网络编程系列04-Python内置的数据类型相关的知识,希望对你有一定的参考价值。
在Python中有以下几种标准的内置数据类型:
1.None: The Null object--空对象
None是Python的特殊类型,表示一个空对象,值为None
2.Numerics(数值): int-整数, long-长整数, float-浮点数, complex-复数, and bool--布尔值 (The subclass of int with True or False value)
3.Sequences(序列): str-字符串, list-列表, tuple-元组, and range-范围
4.Mappings(映射): dict-字典
5.Sets(集合): set-可变集合 and frozenset-不可变集合
以上是关于小飞侠带你精通Python网络编程系列04-Python内置的数据类型的主要内容,如果未能解决你的问题,请参考以下文章
[Python入门到精通系列]新手接触Python第一步之基础语法