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)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…