This is a beginner python coding exercise. Reverse words in a string!
💻 Code along with a Python 3 online compiler: https://www.onlinegdb.com/online_pyth...
⭐ SUBSCRIBE to Apptato for more Brain Teasers, Code Challenges and interesting math problems!
💻 Problem taken from geeksforgeeks.org
Question:
Reverse Words in a given String
For example:
1 2 3 4 5 -- 5 4 3 2 1
Reverse a String in Python 3 -- 3 Python in String a Reverse
Coverage & Review:
Array Split
Array Join
Array For Loop
Answer:
Code:
string = "5 4 3 2 1"
def reverseString(s):
wordArray = s.split(' ')
output = []
for word in wordArray:
output.insert(0,word)
return " ".join(output)
print(reverseString(string))
Thanks for watching
Until next time!
** LINKS **
Website: http://www.apptato.com
YouTube: / apptato
Twitter: / apptato
Facebook: / apptato
Instagram: / apptato
#CODE #PYTHON #PROGRAMMING
On this page of the site you can watch the video online BEGINNER PYTHON CODING - REVERSE WORDS IN A STRING with a duration of hours minute second in good quality, which was uploaded by the user Apptato Trivia & Word Games 26 July 2019, share the link with friends and acquaintances, this video has already been watched 1,114 times on youtube and it was liked by 14 viewers. Enjoy your viewing!