Python字符串中的字符倒轉
來源:懂視網(wǎng)
責編:小采
時間:2020-11-27 14:29:30
Python字符串中的字符倒轉
Python字符串中的字符倒轉:方法一,使用[::-1]: s = 'python' print s[::-1] 方法二,使用reverse()方法: l = list(s) l.reverse() print ''.join(l) 輸出結果: nohtyp nohtyp
導讀Python字符串中的字符倒轉:方法一,使用[::-1]: s = 'python' print s[::-1] 方法二,使用reverse()方法: l = list(s) l.reverse() print ''.join(l) 輸出結果: nohtyp nohtyp
方法一,使用[::-1]:
s = 'python'
print s[::-1]
方法二,使用reverse()方法:
l = list(s)
l.reverse()
print ''.join(l)
輸出結果:
nohtyp
nohtyp
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
Python字符串中的字符倒轉
Python字符串中的字符倒轉:方法一,使用[::-1]: s = 'python' print s[::-1] 方法二,使用reverse()方法: l = list(s) l.reverse() print ''.join(l) 輸出結果: nohtyp nohtyp