Answers for "python file remove last character"

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
1

how to remove the very last character of a text file in python

file.truncate(file.tell - 1)
#explanation - the function truncate will resize the file to the 
#full size - 1 and that means it will remove the last character
#if you need to do that while you are reading/writing somewhere using
#seek() you can use this function ->
def get_size(fileobject):
    fileobject.seek(0,2) # move the cursor to the end of the file
    size = fileobject.tell()
    return size
#and then
fsize = get_size(file)
file.truncate(fsize - 1)
Posted by: Guest on January-09-2021
4

python remove last part of string

#Removing last three characters
foo = foo[:-3]
Posted by: Guest on August-04-2020

Code answers related to "python file remove last character"

Python Answers by Framework

Browse Popular Code Answers by Language