B. The code is erroneous.
strings are immutable, cannot modify or delete individual characters. If you want to 'delete' a character, you can slice:
def func(text):
return text[:2] + text[3:] #removes the letter c from data
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Donny_575
3 weeks, 4 days ago