PYTHON怎么初始化数据
时间: 2024-11-05 08:29:02 浏览: 3
python 变量初始化空列表的例子
在Python中,初始化数据取决于你要创建的数据类型。以下是几种常见类型的初始化方法:
1. **列表(List)**:
```python
my_list = [] # 创建空列表
my_list = [1, 2, 3] # 初始值直接赋值
```
2. **元组(Tuple)**:
```python
my_tuple = () # 创建空元组
my_tuple = (1, 'two', True) # 初始化时包含元素
```
3. **字典(Dictionary)**:
```python
my_dict = {} # 创建空字典
my_dict = {'name': 'John', 'age': 30} # 使用键值对初始化
```
4. **集合(Set)**:
```python
my_set = set() # 创建空集
my_set = {1, 2, 3} # 或者直接包含元素
```
5. **整型(Integer)、浮点型(Float)、布尔型(Boolean)**:
```python
my_int = 10
my_float = 3.14
my_bool = True
```
6. **数组(NumPy Array)** (如果你导入了numpy库):
```python
import numpy as np
my_array = np.array([1, 2, 3]) # 创建数值数组
```
阅读全文