Python 数据类型
内置数据类型
在编程中,数据类型是一个重要的概念。
变量可以存储不同类型的数据,并且不同类型可以执行不同的操作。
在这些类别中,Python 默认拥有以下内置数据类型:
文本类型: | str |
数值类型: | int, float, complex |
序列类型: | list, tuple, range |
映射类型: | dict |
集合类型: | set, frozenset |
布尔类型: | bool |
二进制类型: | bytes, bytearray, memoryview |
设置数据类型
在 Python 中,当您为变量赋值时,会设置数据类型:
示例 | 数据类型 | 试一试 |
---|---|---|
x = "Hello World" | str | 试一试 |
x = 29 | int | 试一试 |
x = 29.5 | float | 试一试 |
x = 1j | complex | 试一试 |
x = ["apple", "banana", "cherry"] | list | 试一试 |
x = ("apple", "banana", "cherry") | tuple | 试一试 |
x = range(6) | range | 试一试 |
x = {"name" : "Bill", "age" : 63} | dict | 试一试 |
x = {"apple", "banana", "cherry"} | set | 试一试 |
x = frozenset({"apple", "banana", "cherry"}) | frozenset | 试一试 |
x = True | bool | 试一试 |
x = b"Hello" | bytes | 试一试 |
x = bytearray(5) | bytearray | 试一试 |
x = memoryview(bytes(5)) | memoryview | 试一试 |
设定特定的数据类型
如果希望指定数据类型,则您可以使用以下构造函数:
示例 | 数据类型 | 试一试 |
---|---|---|
x = str("Hello World") | str | 试一试 |
x = int(29) | int | 试一试 |
x = float(29.5) | float | 试一试 |
x = complex(1j) | complex | 试一试 |
x = list(("apple", "banana", "cherry")) | list | 试一试 |
x = tuple(("apple", "banana", "cherry")) | tuple | 试一试 |
x = range(6) | range | 试一试 |
x = dict(name="Bill", age=36) | dict | 试一试 |
x = set(("apple", "banana", "cherry")) | set | 试一试 |
x = frozenset(("apple", "banana", "cherry")) | frozenset | 试一试 |
x = bool(5) | bool | 试一试 |
x = bytes(5) | bytes | 试一试 |
x = bytearray(5) | bytearray | 试一试 |
x = memoryview(bytes(5)) | memoryview | 试一试 |