python converters举例
时间: 2023-06-22 13:41:47 浏览: 101
只需要用一张图片素材文档选择器.zip
当需要将一个字符串类型的数字转换成整型时,可以使用 int() 函数。比如:
```python
num_str = "123"
num_int = int(num_str)
print(type(num_int), num_int)
```
输出:
```python
<class 'int'> 123
```
当需要将一个整型转换成字符串类型时,可以使用 str() 函数。比如:
```python
num_int = 123
num_str = str(num_int)
print(type(num_str), num_str)
```
输出:
```python
<class 'str'> 123
```
当需要将一个列表类型转换成元组类型时,可以使用 tuple() 函数。比如:
```python
list1 = [1, 2, 3]
tuple1 = tuple(list1)
print(type(tuple1), tuple1)
```
输出:
```python
<class 'tuple'> (1, 2, 3)
```
当需要将一个字典类型转换成 JSON 格式时,可以使用 json.dumps() 函数。比如:
```python
import json
dict1 = {"name": "Alice", "age": 20, "city": "Shanghai"}
json_str = json.dumps(dict1)
print(type(json_str), json_str)
```
输出:
```python
<class 'str'> {"name": "Alice", "age": 20, "city": "Shanghai"}
```
阅读全文