Answers for "how to remove the last two characters of a string in python"

2

python remove last character from string

your_string = "hello"
your_string = your_string[:-1] # this removes the last character from your string
Posted by: Guest on October-10-2020
-1

python remove last 4 characters from string

foo = foo[:-n]
Posted by: Guest on September-17-2020

Code answers related to "how to remove the last two characters of a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language