我收到錯誤「標籤和空格在縮進中使用不一致」,但據我所知,一切都應該如此。具體來說,它指的是for item in poly(1:):
,它在最後一個冒號下面有一個胡蘿蔔。我正在使用Notepad ++編輯器和Python 3.4。有什麼想法嗎?標籤和空格的使用不一致
def compute_deriv(poly):
new_poly =()
for item in poly(1:):
new_poly.append(poly.index(item)*item)
return new_poly
print(compute_deriv(-13.89,0.0,17.5,3.0,1.0))
什麼是* first *錯誤消息? –
查看 - >顯示符號 - >顯示空白和製表符 –