python replace last character in string code example
Example 1: python remove last character from string
str = "string"
str = str[:-1]
Example 2: python remove last characters from string
st = "abcdefghij"
st = st[:-1]
Example 3: how to replace the last character of a string in python
sample_string = "712345677890 173445667"
new_string=sample_string.replace("7", r)
print new_string
r123456rr890 1r344566r
712345677890 17344566r
new_string=sample_string [:-1] + "r"
712345677890 17344566r
Example 4: python remove last character from string
your_string = "hello"
your_string = your_string[:-1]
Example 5: python remove last character from string
str = "abc"
str = str[:-1]
print(str)
>>> ab