Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

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"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...