Turning a sentence from first to second person

前端 未结 2 472
盖世英雄少女心
盖世英雄少女心 2021-01-29 10:35

I\'m trying to write a script in Python using nltk which changes a sentence from second person to first person. Example: the sentence

I went to see Avatar and yo         


        
2条回答
  •  时光说笑
    2021-01-29 11:01

    Um, not sure about using a built in function, but you can try .replace()

    For example:

    .replace("I","You")
    

    would change every "I" in the string to "You"

提交回复
热议问题