python强制转换数据类型格式
时间: 2023-11-22 21:47:58 浏览: 74
Python如何实现强制数据类型转换
Python中的强制数据类型转换可以使用内置函数来实现。以下是常用的数据类型转换函数及其格式:
1. 将x转换成整数类型:int(x)
2. 将x转换成浮点数类型:float(x)
3. 将x转换成复数类型:complex(x)
4. 将x转换成字符串类型:str(x)
5. 将x转换成元组类型:tuple(x)
6. 将x转换成列表类型:list(x)
7. 将x转换成集合类型:set(x)
8. 将x转换成字典类型:dict(x)
其中,x为需要转换的变量或值。需要注意的是,如果转换失败会抛出异常。
以下是一个示例代码,演示了如何使用这些函数进行数据类型转换:
```python
# 将字符串转换成整数
a = int("123")
print(a, type(a)) # 输出:123 <class 'int'>
# 将整数转换成浮点数
b = float(123)
print(b, type(b)) # 输出:123.0 <class 'float'>
# 将浮点数转换成复数
c = complex(1.2)
print(c, type(c)) # 输出:(1.2+0j) <class 'complex'>
# 将整数转换成字符串
d = str(123)
print(d, type(d)) # 输出:123 <class 'str'>
# 将元组转换成列表
e = list((1, 2, 3))
print(e, type(e)) # 输出:[1, 2, 3] <class 'list'>
# 将列表转换成集合
f = set([1, 2, 3])
print(f, type(f)) # 输出:{1, 2, 3} <class 'set'>
# 将元组转换成字典
g = dict([(1, 'one'), (2, 'two')])
print(g, type(g)) # 输出:{1: 'one', 2: 'two'} <class 'dict'>
```
阅读全文