python输入一个字符串,输出它所包含的所有数字
时间: 2023-04-27 09:03:28 浏览: 2226
Python 字符串与数字输出方法
5星 · 资源好评率100%
可以使用Python中的正则表达式模块re来实现。
具体步骤如下:
1. 导入re模块
```python
import re
```
2. 定义一个字符串
```python
str = "hello123world456"
```
3. 使用re.findall()函数查找字符串中的数字
```python
num_list = re.findall('\d+', str)
```
其中,'\d+'表示匹配一个或多个数字。
4. 输出结果
```python
print(num_list)
```
完整代码如下:
```python
import re
str = "hello123world456"
num_list = re.findall('\d+', str)
print(num_list)
```
输出结果为:
```python
['123', '456']
```
阅读全文