Posts by Igor Silva • 11 points
1 post
-
1
votes3
answers8071
viewsA: ASCII in Python
Hello, as strings are immutable in Python every operation on top of a string generates a new string. So one way to solve your problem would be: str="ABBBCD" index=1 str = str[:index] +…