Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #remove #letter #string #python
ADD COMMENT
Topic
Name
8+2 =