字符串不是不能改变吗? 这回复有问题吧
<ipython-input-4-c61d513811b4> in <module>
1 a = 'helloPython'
----> 2 a[1]='a'
3 print(a)
TypeError: 'str' object does not support item assignment
TypeError Traceback (most recent call last)
<ipython-input-5-e8900b5b178c> in <module>
1 a = 'helloPython'
----> 2 a[1] = a
3 print(a)
TypeError: 'str' object does not support item assignment