Question 31) Write a Python Program to reverse a String.
Solution 1: Using Slicing
input_string = "Environment"
reversed_string = input_string[::-1]
print(reversed_string)
Output:
tnemnorivnE
Solution 2: Using for loop
input_string = "Python"
reversed_string = ""
for char in input_string:
reversed_string = char + reversed_string
print(reversed_string)
Output:
nohtyP
Solution 3: Using recurssion function
def recursion_reverse_string(input_str):
if len(input_str) == 0:
return input_str
else:
return reverse_string(input_str[1:]) + input_str[0]
reversed_string = recursion_reverse_string("Hello")
print(reversed_string)
Output:
olleH
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- How to copy Chrome alert popup text to clipboard - Chrome
- Deep Dive: Why avoid java.util.Date and Calendar Classes - Java
- SharePoint Server 2016 IT Preview Deprecated Removed features - SharePoint
- How to restart WiFi using Crosh Terminal (ChromeOS Chromebook) - Chrome
- 12 August - International Youth Day celebrated worldwide - News
- Teams - You're offline. Messages you send while offline will be sent when you're back online - Teams
- Install Docker on Mac using brew cask - Docker
- Sorting an array using Bubble Sort in Python Programming - Python