取一个单词的首字母(假设单词是word),word[0:1]。
取句子中所有的单词的首字母(假设句子是sentence)
[word[0:1] for word in sentence.split()]
map( lambda x: x[0] if len(x) and x[0]. isalpha() else ', str_value.split())
取一个单词的首字母(假设单词是word),word[0:1]。
取句子中所有的单词的首字母(假设句子是sentence)
[word[0:1] for word in sentence.split()]
map( lambda x: x[0] if len(x) and x[0]. isalpha() else ', str_value.split())