例如:
输入:Hello Python world!
输出:5 6 5
import string
words = input()
# 去除所有标点符号
....
# 英语句子分词
________
f = lambda x: len(x)
for i in __________:
print(f(i),_______)
请求补充第四行处省略号以及横线处的代码
例如:
输入:Hello Python world!
输出:5 6 5
import string
words = input()
# 去除所有标点符号
....
# 英语句子分词
________
f = lambda x: len(x)
for i in __________:
print(f(i),_______)
请求补充第四行处省略号以及横线处的代码
import string
words = input()
# 去除所有标点符号
import re
punctuation = '!,;:?"\'、,;'
words = re.sub(r'[{}]+'.format(punctuation),' ',words).strip()
# 英语句子分词
lst = words.split()
f = lambda x: len(x)
for i in lst:
print(f(i), end=' ')