Answers for "how to remove the last 3 letters 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
6

how to remove the last letter of a string python

string = "Hello World"
string = string[:-1]  # This overwrite the string to have the last letter removed.
print(string)# Then we print the variable string
Posted by: Guest on February-25-2021

Code answers related to "how to remove the last 3 letters of a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language