Reverse The Given String Using Recursion | Python Programs | Interview Question And Answer

preview_player
Показать описание
In this Python programming video series we will learn how to reverse the given string using recursion.

Program 01:
def reverse_str(str1):
if str1 == "":
return ""
else:
return reverse_str(str1[1:]) + str1[0]

str1 = input("enter the string:")
str2 = reverse_str(str1)
print("reversed string is :",str2)

Program 02:
def reverse_str(str1):
if len(str1)==1:
return str1
else:
return reverse_str(str1[1:]) + str1[0]

str1 = input("enter the string:")
str2 = reverse_str(str1)
print("reversed string is :",str2)

Star Pattern With Recursion:

Recursion:

#PythonPrograms #PythonProgramming

For more free tutorials on computer programming
Рекомендации по теме
Комментарии
Автор

Ur teaching skill is amazing the amount of dedication reflects in your work..thnx

sumitg
Автор

i haven't found any better video then this . the way u are teaching is (no words ) just

Cheekyboi
Автор

You are such a good teacher i have ever seen to explain this much detailed. Good work Amulya! Keep it up. Thank you

achibabudontula
Автор

This is the Best Explanation for recursion By Far. Thanks to you Ma'am

AyushSharma-bekh
Автор

nice work mam, actually I'm a beginner in python but your teaching makes me as a intermediate....thank you mam

surya
Автор

Thanks for this video it really explains recursion in a greater light❤

newportxpress
Автор

Wow. You're an excellent teacher 👏

nonoobott
Автор

This best explanation I have ever seen

vempativenkstesh
Автор

first indian i learned from her thanks a lot :)

hissoukaamv
Автор

AMAZING video! Explained this concept so well!

avimehta
Автор

You are blessed. Thanks for this amazing video.

praizdev
Автор

Thank you for clear and easy explanation

sawansinghparihar
Автор

Sister please upload data structures series please we r addicted to ur teaching skills and your voice, please sister upload it fast

jaheerkalanthar
Автор

sir, mam please make videos on how to place in tcs, wipro exams and which type of programes are comes under these exams

farmingclass
Автор

Another awsome video thank you so much

ramchandrakulkarni
Автор

believe me no body can explain like you

bakrymohamed
Автор

Thank you. One more interview problem solved.

chiragpatidar
Автор

Amazing mam please do video on decorators 🙏

shruthik
Автор

effective content delivery, very helpful

vishalnimmu
Автор

Plz do more python exercise video sis plzzz👍👍👍

karthicksk