Snippet
def start_end(word: str) -> str:
return word[0] + word[len(word)-1]
start_end(word="kitkat")
print(start_end(word="skittles"))
Solution
Video
(Video Coming Soon)
Image Description
(Coming Soon)
def start_end(word: str) -> str:
return word[0] + word[len(word)-1]
start_end(word="kitkat")
print(start_end(word="skittles"))
(Video Coming Soon)
(Coming Soon)