w3resource

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:

Flowchart: Python - Reverse a given string in lower case.

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:

Flowchart: Python - Reverse a given string in lower case.

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.



Follow us on Facebook and Twitter for latest update.