python中字符串反轉(zhuǎn)常用的五種方法:使用字符串切片、使用遞歸、使用列表reverse()方法、使用棧和使用for循環(huán)。
1、使用字符串切片(最簡(jiǎn)潔)
s="hello"
reversed_s=s[::-1]
print(reversed_s)
>>>olleh
2、使用遞歸
defreverse_it(string):
iflen(string)==0:
returnstring
else:
returnreverse_it(string[1:])+string[0]
print"added"+string[0]
string1="thecrazyprogrammer"
string2=reverse_it(string1)
print"original="+string1
print"reversed="+string2
3、使用列表reverse()方法
In[25]:l=['a','b','c','d']
...:l.reverse()
...:print(l)
['d','c','b','a']
4、使用棧
defrev_string(a_string):
l=list(a_string)#模擬全部入棧
new_string=""
whilelen(l)>0:
new_string+=l.pop()#模擬出棧
returnnew_string
5、使用for循環(huán)
#for循環(huán)
deffunc(s):
r=""
max_index=len(s)-1
forindex,valueinenumerate(s):
r+=s[max_index-index]
returnr
r=func(s)
以上內(nèi)容為大家介紹了如何實(shí)現(xiàn)python字符串反轉(zhuǎn)?,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。