怎么用python编写一个程序:输入一个字符串,输出它所含的所有数字。
提问:怎么用python编写一个程序:输入一个字符串,输出它所含的所有数字。
网友回答:
程序参考
s=input() a='' for s1 in s: if s1.isdigit(): a+=s1 print(a)