w3resource

Python Exercise: Reverse a word

Python Conditional: Exercise-5 with Solution

Write a Python program that accepts a word from the user and reverses it.

Pictorial Presentation:

Python Exercise: Reverse a word

Sample Solution:

Python Code:

# Prompt the user to input a word
word = input("Input a word to reverse: ")

# Iterate through the characters of the word in reverse order
for char in range(len(word) - 1, -1, -1):
    # Print each character from the word in reverse order without a new line (end="")
    print(word[char], end="")

# Print a new line to separate the reversed word from the next output
print("\n")

Sample Output:

Input a word to reverse: ecruoser3w  
w3resource

Flowchart:

Flowchart: Python program that accept a word from the user and reverse it

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to construct the following pattern, using a nested for loop.
Next: Write a Python program to count the number of even and odd numbers from a series of numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.