Quiz Catalog

Catalog of quizzes

a = 'Python best'
a[a.index('t')] = 'd'

print(a)
TypeError: 'str' object does not support item assignment
  • string/immutable

st = 'hello'
indx = st.index('l')
st[indx] = 'p'

print(st)
TypeError: 'str' object does not support item assignment'
  • string/immutable