0
So you can't change characters of a string?
2 ответов
0
string imutable data type so you can not change characters of a string where as list is a mutable and you can change any element of list.
0
Nop, you can't really edit a string but there are bypasses
As
s = "text"
print s
>>> text
s += "ing"
print s
>>> texting