Python: Reverse a given string in lower case
Python Basic - 1: Exercise-125 with Solution
Write a Python program to reverse a given string in lower case.
Sample Solution-1:
Python Code:
def test(str1):
return str1[::-1].lower()
str = "PHP"
print("Original string:",str)
print("Reverse the said string in lower case:",test(str))
str = "JavaScript"
print("\nOriginal string:",str)
print("Reverse the said string in lower case:",test(str))
str = "PHPP"
print("\nOriginal string:",str)
print("Reverse the said string in lower case:",test(str))
Sample Output:
Original string: PHP Reverse the said string in lower case: php Original string: JavaScript Reverse the said string in lower case: tpircsavaj Original string: PHPP Reverse the said string in lower case: pphp
Flowchart:

Sample Solution-2:
Python Code:
def test(str1):
return str1.lower()[::-1]
str = "PHP"
print("Original string:",str)
print("Reverse the said string in lower case:",test(str))
str = "JavaScript"
print("\nOriginal string:",str)
print("Reverse the said string in lower case:",test(str))
str = "PHPP"
print("\nOriginal string:",str)
print("Reverse the said string in lower case:",test(str))
Sample Output:
Original string: PHP Reverse the said string in lower case: php Original string: JavaScript Reverse the said string in lower case: tpircsavaj Original string: PHPP Reverse the said string in lower case: pphp
Flowchart:

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to check if a given string contains two similar consecutive letters.
Next: Write a Python program to convert the letters of a given string (same case-upper/lower) into alphabetical order.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join