LoginSignup
25
12

More than 5 years have passed since last update.

Python 文字列反転

Posted at

文字列や配列の順番を反転させたい時ありますよね。
そういう時は次のようにすると反転できます。

以下サンプル
lang:reverse.py
alpha = "abcdefghijklmnopqrstuvwxyz"
alpha = alpha[::-1]
print alpha

zyxwvutsrqponmlkjihgfedcba

詳しくは
http://d.hatena.ne.jp/redcat_prog/20111104/1320395840

25
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
12