1. Background: python 3/win10
2. Error Line:
idx = nums.index[target-operand1]
3. Solution
index()是对list的函数,所以要用圆括号,而不是方括号
idx = nums.index(target-operand1)
1. Background: python 3/win10
2. Error Line:
idx = nums.index[target-operand1]
3. Solution
index()是对list的函数,所以要用圆括号,而不是方括号
idx = nums.index(target-operand1)
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。