若想由字串後取得字元,為索引值加上負號(-)即可,例如想取得最後1 個字元或最後第5 個字元: string = "python" print(string[-1]) # 輸出為n print(string[-5]) ...
確定! 回上一頁