Back to Browse

BEGINNER PYTHON CODING - REVERSE WORDS IN A STRING

1.1K views
Jul 26, 2019
7:43

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_python_compiler ⭐ 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: https://www.youtube.com/apptato Twitter: https://www.twitter.com/apptato Facebook: https://www.facebook.com/apptato Instagram: https://www.instagram.com/apptato #CODE #PYTHON #PROGRAMMING

Download

0 formats

No download links available.

BEGINNER PYTHON CODING - REVERSE WORDS IN A STRING | NatokHD