数据类型的变量 python
时间: 2023-11-19 16:57:40 浏览: 93
python变量和数据类型
Python中的数据类型包括整型、浮点型、布尔型、字符串、列表、元组、集合和字典等。变量在Python中不需要进行类型声明,给一个变量名赋什么值就是什么类型。例如:
```python
num = 10 # 整型
pi = 3.14 # 浮点型
is_true = True # 布尔型
name = "John" # 字符串
my_list = [1, 2, 3] # 列表
my_tuple = (4, 5, 6) # 元组
my_set = {7, 8, 9} # 集合
my_dict = {"apple": 1, "banana": 2, "orange": 3} # 字典
```
可以使用type()函数来查看变量的数据类型,例如:
```python
print(type(num)) # 输出:<class 'int'>
print(type(pi)) # 输出:<class 'float'>
print(type(is_true)) # 输出:<class 'bool'>
print(type(name)) # 输出:<class 'str'>
print(type(my_list)) # 输出:<class 'list'>
print(type(my_tuple)) # 输出:<class 'tuple'>
print(type(my_set)) # 输出:<class 'set'>
print(type(my_dict)) # 输出:<class 'dict'>
```
阅读全文