方法 1、[::-1] を使用します: s = 'python' print s[::-1] 方法 2、reverse() メソッドを使用します: l = list(s) l.reverse() print ''.join(l) 出力結果: nohtyp nohtyp