Answers for "get rid of last characters of a string in python"

64

python remove last character from string

str =  "string"
str = str[:-1]  # Returns "strin"
Posted by: Guest on July-25-2020
2

python how to remove last letter from string

str = "string_example"
str = str[:-1] # -> returns "string_exampl" (-> without the "e")
Posted by: Guest on September-12-2021

Code answers related to "get rid of last characters of a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language