網站首頁 健康小知識 母嬰教育 起名 運動知識 職場理財 情感生活 綠色生活 遊戲數碼 美容 特色美食 愛好
當前位置:酷知知識幫 > 遊戲數碼 > 電腦

python中字符串如何反轉?

欄目: 電腦 / 發佈於: / 人氣:1.43W

怎樣在 python 中將字符串“hello word”反轉打印呢?介紹幾種方法供大家參考。

操作方法

(01)切片法

(02)>>> 'hello world'[::-1]'dlrow olleh'

python中字符串如何反轉?

(03)切片的擴展語法。步長爲-1, 即字符串的翻轉

方法/步驟2

(01)for循環輸出

(02)string ='hello world'print ''(string[i] for i in range(len(string)-1, -1, -1))dlrow olleh

python中字符串如何反轉? 第2張