次のコードは、stdin から整数 n を取得し、それをバイナリに変換し、バイナリ文字列を反転してから、整数に変換して出力します。
import sys
def reversebinary():
n = str(raw_input())
bin_n = bin(n)[2:]
revbin = "".join(list(reversed(bin_n)))
return int(str(revbin),2)
reversebinary()
ただし、次のエラーが発生します。
Traceback (most recent call last):
File "reversebinary.py", line 18, in <module>
reversebinary()
File "reversebinary.py", line 14, in reversebinary
bin_n = bin(n)[2:]
TypeError: 'str' object cannot be interpreted as an index
何が問題なのかわからない。