So, let's take a string
s = 'lady'
Now, in python, string is immutable
. By that, it means you can not alter the string variable s
once it is created. So what effectively you want to to do is to take all the characters of s
until but not included the last character y
and add ies
at the end.
Now, the copy can be done using slicing operator
new_s = s[:-1] + "ies"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…