1. 程式人生 > >python錯誤提示:TypeError: 'builtin_function_or_method' object is not subscriptable

python錯誤提示:TypeError: 'builtin_function_or_method' object is not subscriptable

[]
換成
()

>>> yy.replace['a','s']
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'builtin_function_or_method' object is not subscriptable
>>> yy.replace('a','s')
'sbcdef'
>>>

在這裡插入圖片描述