Extra-Terrestrials Challenge Alternate Solution | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Extra-Terrestrials Challenge Alternate Solution

For the above challenge (take a given word and output the word in reverse order), I came up with: word = input() alien_word = "" g = -1 for i in range(len(word)): alien_word = alien_word + word[g] g -= 1 print(alien_word) END Does anyone have another solution or is there a simpler one? I would like to explore other ways of solving the same problem and obviously, simple is better so I would like to know if there is a better way. Thanks.

31st Aug 2020, 10:31 PM
Dylan Woody
Dylan Woody - avatar
1 Answer
+ 1
~ swim ~ thanks
31st Aug 2020, 10:48 PM
Dylan Woody
Dylan Woody - avatar