Python只留字母元素
作者:互联网
通过编程方式,将字符串中的 数字及特殊符号 剔除, 保留 I like chinese
My_str =' 123 I like 456 chinese ^&* '
方法一:
str1=''
list1=My_str.split()
for x in list1:
if x.isalpha():
str1=str1+x+' '
print(str1)
方法二:
for i in My_str:
if 64<ord(i)<74 or 96<ord(i)<123 or ord(i)==32:
print(i,end='')
标签:只留,chinese,Python,字母,list1,str,print,My,str1 来源: https://www.cnblogs.com/actionnow/p/16147020.html