I\'m doing homework and I have all except this last problem figured out. I can\'t seem to figure out how to get a character not to show up if it\'s inserted at a larger insertio
We converted the string into a list and then change the value(update the string with inserting a character between a string).
def anystring(string, position, character): list2=list(string) list2[position]=character return ''.join(list2)