I'm currently stuck in this right now.
I have a code right here:
words = ["Hello","how","are","you"]
arrlen = len(words)
val1, val2, val3, val4 = words
What I want to do is add ".mp4" in each val1, val2, val3 and val4. Is there any way to achieve this? I have tried val1 + ".mp4", but it does not work.