可以用字符串的方法.isalpha()判断字符串是否全部是英文字母,包含大小写,不包含数字和空格s = 'Hello there'for i in s.split(' '): print i.isalpha()