接收从控制台输入的一个字符串,字符串的长度不定,从字符串中提取所有数字(0~9
时间: 2023-05-28 19:04:52 浏览: 130
去掉重复的字符串及在第一个字符串中删除在第二个字符串中出现的字符
)组成一个新的字符串并输出。
示例输入:hello123world456
示例输出:123456
代码实现:
```python
s = input() # 接收控制台输入的字符串
numbers = '' # 初始化数字字符串
for char in s:
if char.isdigit(): # 如果当前字符是数字
numbers += char # 将它添加到数字字符串中
print(numbers) # 输出数字字符串
```
阅读全文