方法一:isalpha()
"a".isalpha()
方法二:string.letters
- string.uppercase
import string
s="dasdas1212312asd"
d={}
for i in s:
if i not in string.letters: