要求:在Python環(huán)境下用盡可能多的方法反轉(zhuǎn)字符串,例如將s = "abcdef"反轉(zhuǎn)成 "fedcba"
【1】:使用字符串切片result = s[::-1]
【2】:使用列表的reverse方法
l = list(s)
l.reverse()
result = "".join(l)
【3】:使用reduceresult = reduce(lambda x,y:y+x,s)
【4】:使用遞歸函數(shù)
def fun(s):
if len(s)<1:
return s
return func(s[1:])+[0]
result = func(s)
【5】:使用棧
def func(s):
l = list(s) #模擬全部入棧
result = ""
while len(1)>0:
result += 1.pop() #模擬出棧
return result
result = func(s)
【6】:for循環(huán)
def func(s):
result = ""
max_index = len(s)-1
for index,value in enumerate(s):
result += s[max_index-index]
return result
result = func(s)
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線(xiàn),公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。