How do I modify a single character in a string, in Python? Something like:
a = \"hello\" a[2] = \"m\"
\'str\' object does not support ite
It's because strings in python are immutable.