python報錯: arry[i] = t IndexError: list assignment index out of range

此處報錯的原因是arry是一個空列表,空列表不能按照下標索引的方法賦值 解決方法:使用方法.append()   def binself(x): arry=[] i=0 while(x): t=x%2 x=x//2 arry.append(t) i = i+1 return arry print(bi
相關文章
相關標籤/搜索