1、创建python文件,testregexp.py文件;
2、编写代码数脊提取字符串中的数字;
string="12abc34wf5s!@#6af7"高败
list_str1=re.findall(r"\d*",string)
list_num=''.join(list_str1)
print(list_num)
3、编写代码,提取字符串中的戚毕颤英文字母;
#提取字符
list_str2=re.findall("[a-z]*",string)
list_str=''.join(list_str2)
print(list_str)
4、运行代码,查看执行结果,满足所需结果;
主要出在eval上。 python3.0 第一慎圆个方案: while True: ten=input("x:") try: x=eval(ten) if type(x)==int:break except:pass 然后输入asf,宽清塌没有正乎提示。输入344就退出了 x:asf x:344 第二个方案 while True: ten=None try: ten=int(input("x:")) except:pass if type(ten)==int:break 这个在python3.0上调试通过 第三个方案:python2.x的方案 while True: ten=raw_input("Enter a number:") if ten.isdigit():break ten=int(ten) #或者是ten=eval(ten) 都调试过。可以用