python数据类型定义
时间: 2024-02-01 11:11:05 浏览: 88
Python中常见的数据类型有:
1. 整型(int):表示整数,例如:x = 10
2. 浮点型(float):表示带有小数点的数,例如:y = 3.14
3. 布尔型(bool):表示真或假,例如:is_true = True
4. 字符串型(str):表示一串字符,例如:name = "John"
5. 列表型(list):表示一组有序的元素,可以包含不同类型的数据,例如:numbers = [1, 2, 3]
6. 元组型(tuple):表示一组有序的元素,不可修改,例如:point = (2, 3)
7. 字典型(dict):表示键值对的集合,例如:person = {"name": "John", "age": 25}
8. 集合型(set):表示一组无序的唯一元素,例如:fruits = {"apple", "banana", "orange"}
以下是一个示例代码,演示了如何定义不同类型的数据:
```python
x = 10
y = 3.14
is_true = True
name = "John"
numbers = [1, 2, 3]
point = (2, 3)
person = {"name": "John", "age": 25}
fruits = {"apple", "banana", "orange"}
print(x, type(x))
print(y, type(y))
print(is_true, type(is_true))
print(name, type(name))
print(numbers, type(numbers))
print(point, type(point))
print(person, type(person))
print(fruits, type(fruits))
```
输出结果如下:
```
10 <class 'int'>
3.14 <class 'float'>
True <class 'bool'>
John <class 'str'>
[1, 2, 3] <class 'list'>
(2, 3) <class 'tuple'>
{'name': 'John', 'age': 25} <class 'dict'>
{'banana', 'orange', 'apple'} <class 'set'>
```
阅读全文