Individual words in a list then printing the positions of those words

前端 未结 5 1372
逝去的感伤
逝去的感伤 2020-12-20 02:54

I need help with a program that identifies individual words in a sentence, stores these in a list and replaces each word in the original sentence with the position of that w

5条回答
  •  执笔经年
    2020-12-20 03:34

    You can also create a dictionary mapping the words with their initial position, then use it to substitute the words with their respective positions.

    >>> s = 'ASK NOT WHAT YOUR COUNTRY CAN DO FOR YOU ASK WHAT YOU CAN DO FOR YOUR COUNTRY'
    >>> 
    >>> 
    >>> l = s.split()
    >>> l
    ['ASK', 'NOT', 'WHAT', 'YOUR', 'COUNTRY', 'CAN', 'DO', 'FOR', 'YOU', 'ASK', 'WHAT', 'YOU', 'CAN', 'DO', 'FOR', 'YOUR', 'COUNTRY']
    >>> 
    >>> d = dict((s, l.index(s)+1) for s in set(l))
    >>> d
    {'DO': 7, 'COUNTRY': 5, 'CAN': 6, 'WHAT': 3, 'ASK': 1, 'YOUR': 4, 'NOT': 2, 'FOR': 8, 'YOU': 9}
    >>> list(map(lambda s: d[s], l))
    [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 3, 9, 6, 7, 8, 4, 5]
    >>> 
    

提交回复
热议问题