PY INSERT CHAR À INDEX

a_string = "ac"
a_string = a_string[:1] + "b" + a_string[1:]
print(a_string)
>>> abc
Somebody32x2