python中如何提取单词的首字母
发布网友
发布时间:2022-04-23 10:12
我来回答
共3个回答
热心网友
时间:2022-04-07 13:11
a='123123' #单个字符串
print a[0]
a='asd asd 12 asd 232' #多个字符串
print [i[0] for i in a.split(' ')] #根据实际情况分割 是否剔除不是单词的字符串 如12 那就自己加判断
热心网友
时间:2022-04-07 14:29
s = ''' 'Bachelor in Paradise' Contestant Speaks Out After Scandal: 'We Knew Something Bad Had Happened' '''
for word in s.split():
for c in word:
if c.isalpha():
print(word + ': ' + c.upper())
break
热心网友
时间:2022-04-07 16:04
取一个单词的首字母(假设单词是word),word[0:1]。
取句子中所有的单词的首字母(假设句子是sentence)
[word[0:1] for word in sentence.split()]