sentence = input("Enter a sentence : ") Reach for the stars.

s = sentence.split()

print("First word:", s[0])

print("Last word: ", s[3])


이렇게 하니까 stars.  이런식으로 마침표까지  그대로 나오는데 마침표 없이 stars 단어만 나오게 하려면 어떤거 써야하는거임?