查找数字python123
时间: 2023-08-02 14:27:27 浏览: 83
123_python_源码
请问您需要查找的数字是什么?如果您需要在字符串中查找数字,可以使用正则表达式或字符串的内置方法来实现。例如,使用正则表达式可以使用re模块的search方法来查找数字:
```python
import re
string = "Hello, 12345 world!"
match = re.search(r'\d+', string)
if match:
print(match.group())
else:
print("No match")
```
上述代码将输出 "12345"。如果您需要查找的是列表或其他数据结构中的数字,可以使用Python的内置函数来遍历和查找元素。
阅读全文