【Python】Python数据类型 代码举例讲解

Python中主要有以下几种数据类型:

  1. 数字(Number)
    Python支持整数(int)、浮点数(float)、复数(complex)三种数字类型。
## python www.itzhimei.com 代码
x = 3       # int
y = 3.14    # float
z = 2 + 3j  # complex
  1. 字符串(String)
    使用单引号”或双引号””定义,支持转义字符\。
## python www.itzhimei.com 代码
s = 'hello'
s2 = "Tom's bag"
s3 = 'Say hi to \"Tom\"' # 使用转义字符
  1. 列表(List)
    有序可变序列,用[ ]定义。可以包含不同类型数据。
## python www.itzhimei.com 代码
nums = [1, 2, 3]
mix = [1, "hello", True] 
  1. 元组(Tuple)
    有序不可变序列,用()定义。
## python www.itzhimei.com 代码
point = (1, 2)
  1. 字典(Dict)
    键值对映射,用{ }定义。键必须是唯一的。
## python www.itzhimei.com 代码
info = {"name": "John", "age": 20}
  1. 集合(Set)
    无序不重复元素集,用{ }定义。
## python www.itzhimei.com 代码
s = {1, 2, 3}

这些是Python的主要内置数据类型。