python remova o último caractere da string
str = "string"
str = str[:-1] # Returns "strin"
Batman
str = "string"
str = str[:-1] # Returns "strin"
st = "abcdefghij"
st = st[:-1] // Returns string with last character removed
# Python program to remove last character from a string using slice notation
text= 'Hello World!'
print(text[:-1])
#Removing last three characters
foo = foo[:-3]
your_string = "hello"
your_string = your_string[:-1] # this removes the last character from your string
foo = foo[:-n]