Python常用的数据类型包括:
- 整数(int)
整数可以表示正数、负数和零。
python
num = 10
print(type(num)) # <class 'int'>
- 浮点数(float)
浮点数是带小数点的数字。
python
pi = 3.1415926
print(type(pi)) # <class 'float'>
- 字符串(str)
字符串是字符序列,使用单引号或双引号包裹。
python
name = 'John'
print(type(name)) # <class 'str'>
- 布尔类型(bool)
布尔类型只有True和False两种值。
python
flag = True
print(type(flag)) # <class 'bool'>
- 列表(list)
列表是一种容器,可以存储多个数据。
python
nums = [1, 2, 3]
print(type(nums)) # <class 'list'>
- 元组(tuple)
元组也是容器,不能修改元组中的元素。
python
persons = ('Jack', 'Tom')
print(type(persons)) # <class 'tuple'>
- 字典(dict)
字典使用键值对存储数据, Lookup时间复杂度为O(1)。
python
info = {'name':'John', 'age':20}
print(type(info)) # <class 'dict'>
Python拥有丰富的数据类型,可以灵活地表示各种数据。