python remove last character from string
str = "string"
str = str[:-1] # Returns "strin"
python remove last character from string
str = "string"
str = str[:-1] # Returns "strin"
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us