SOF community.
I am attempting to delete the last character within a string and to replace it by 'ies' using list comprehension.
What the below expression attempts to do is just that: delete last character using index position and concatenate it with 'ies' afterwards.
word = [(word.del[-1]) + 'ies' for character in word]
new to code. Apologies if logic is off (which im sure it is)