python统计每个单词的长度并返回整数列表[x,y,z],并升序排列

para='Furthermore, the curve is the citation path connecting lines from the left side to the right side. This connection demonstrates the flow of knowledge inn different areas. The scattered points of the citing mapp aind the cited mapp are concentrated on the bottom side, involving many discipline categories. Finding the regions wiith the most citation launching points inn the citing portion on the mapp makes it straightforward to determine the disciplinary regions where a topic has advantages.'


para='Furthermore, the curve is the citation path connecting lines from the left side to the right side. This connection demonstrates the flow of knowledge inn different areas. The scattered points of the citing mapp aind the cited mapp are concentrated on the bottom side, involving many discipline categories. Finding the regions wiith the most citation launching points inn the citing portion on the mapp makes it straightforward to determine the disciplinary regions where a topic has advantages.'
para.replace(',', '')
para_list = para.split(' ')
print(para_list)
dict = {}
for item in para_list:
    if item not in dict:
        dict[item]= len(item)
print(dict)
# 取出所有的值,并排序
dict_values_ist = list(dict.values())
dict_values_ist.sort()
print(dict_values_ist)