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
En esta página del sitio puede ver el video en línea BEGINNER PYTHON CODING - REVERSE WORDS IN A STRING de Duración hora minuto segunda en buena calidad , que subió el usuario Apptato Trivia & Word Games 26 julio 2019, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 1,114 veces y le gustó 14 a los espectadores. Disfruta viendo!