python remove last 2 letters from string code example
Example 1: python remove last character from string
str = "abc"
str = str[:-1]
print(str)
>>> ab
Example 2: python remove last 4 characters from string
foo = foo[:-n]
str = "abc"
str = str[:-1]
print(str)
>>> ab
foo = foo[:-n]