1
當我嘗試使用此功能:對象不能被解釋爲索引
def dec_to_bin():
decimal = raw_input('Input a number: ')
a = bin(decimal)
print(a)
它給出了一個錯誤:::::
a = bin(decimal) TypeError: 'str' object can not be interpreted as an index
我怎樣才能解決這一問題?