filmov
tv
How to Reverse String in Python || 6 Different Way || Python Programming

Показать описание
How to Reverse String in Python || 6 Different Way || Python Programming
Here is the code snippet..
day = "Sunday"
#Method-1 - Slicing
print(day[::-1])
#Method-2 - Using For Loop
temp = ''
for char in day:
temp = char + temp # Append chars in reverse order
print(temp)
#Method-3 - While Loop
temp = ''
length = len day -1
while length (greater= sign) 0:
temp = temp + day[length]
length = length -1
print(temp)
#Method-4- Using List - reverse()
day = "Sunday"
temp_list = list(day)
print(''.join(temp_list))
#Method-5 - Using Recursion
def reverse_rec(str):
if len(str) == 0:
return str
else:
return reverse_rec(str[1:]) + str[0]
print(reverse_rec("Sunday"))
#Method#6 - Reversed()
day = "Sunday"
reverse_str = ''.join(reversed(day))
print(reverse_str)
Here is the code snippet..
day = "Sunday"
#Method-1 - Slicing
print(day[::-1])
#Method-2 - Using For Loop
temp = ''
for char in day:
temp = char + temp # Append chars in reverse order
print(temp)
#Method-3 - While Loop
temp = ''
length = len day -1
while length (greater= sign) 0:
temp = temp + day[length]
length = length -1
print(temp)
#Method-4- Using List - reverse()
day = "Sunday"
temp_list = list(day)
print(''.join(temp_list))
#Method-5 - Using Recursion
def reverse_rec(str):
if len(str) == 0:
return str
else:
return reverse_rec(str[1:]) + str[0]
print(reverse_rec("Sunday"))
#Method#6 - Reversed()
day = "Sunday"
reverse_str = ''.join(reversed(day))
print(reverse_str)
Reverse Strings in JAVA | (simple & easy)
Reverse String - 3 Ways - Leetcode 344 - Python
Reverse A String In Java | Program To Reverse A String | Reverse String In Java | Java Interview
3 Different Ways to Reverse a String in JavaScript
Frequently Asked Java Program 03: Reverse A String | 3 Ways of Reverse a String
Reverse A String | Python Example
C_69 C Program to Reverse a String | with strrev() and without strrev() function
Java Program #7 - Reverse a String in Java
'Reverse a String in JavaScript - Easy Methods Explained!'
HOW TO REVERSE A STRING IN C PROGRAMMING?
LeetCode Reverse String Solution Explained - Java
Reverse String in Java Practice Program #41
How to Reverse a String in Python | Three Ways to Reverse a String
5 Ways to Reverse a String | Daily Programmer | Episode 1
Reverse Words in a String | LeetCode 151 | C++, Java, Python
Reverse A String | C Programming Example
Java Program to Reverse String without using in-built reverse() Method #java #interview #coding
Reverse A String In C And C++
String Reverse | How to reverse a string | Javascript | One Minute Javascript | 1 Min JS | Quick JS
How to Reverse a String - Java Interview Question -1
Reversing a String | JAVA INTERVIEW QUESTIONS
How to reverse a string in | Important Programming question
Strings - Part 4 | Reverse Words in String | DSA Placement Series
Reverse String | LeetCode 344 | C++, Java, Python
Комментарии