试图弄清楚如何从我的输出中删除句点。作业的正确答案是:WA。EA。人工智能。应收账款。VI 我的输出是:WA。EA。人工智能。应收账款。六、
我试过使用 rstrip 删除 . 从输出,但这不起作用。
感谢这位新手 Python 程序员的一些见解。
stopwords = ['to', 'a', 'for', 'by', 'an', 'am', 'the',
'so', 'it', 'and', 'The']
sent = "The water earth and air are vital"
s_sent=sent.split()
acro = ''
for word in s_sent:
if word not in stopwords:
acro=acro + str.upper(word[:2])+". "
acro=acro.rstrip('.')
print(acro)
波斯汪
拉风的咖菲猫
慕村225694
相关分类