句読点から単語を分割する必要があります-関数に各単語を見て、[-1]、インデックス-1、および単語を分割することにより、句読点があるかどうかを判断することを考えています句読点ではなく文字に当たるとすぐに句読点から...
sent=['I', 'went', 'to', 'the', 'best', 'movie!','Do','you', 'want', 'to', 'see', 'it', 'again!?!']
import string
def revF(List):
for word in List:
for ch in word[::-1]:
if ch is string.punctuation:
#go to next character and check if it's punctuation
newList= #then split the word between the last letter and first puctuation mark
return newList