Very new to Python and have very simple question. I would like to trim the last 3 characters from string. What is the efficient way of doing this?
Example I am going becomes I am go
|
|
You can use |
|||||
|
|
Use string slicing.
|
|||
|
|
|
You could add a [:-3] right after the name of the string. That would give you a string with all the characters from the start, up to the 3rd from last character. Alternatively, if you want the first 3 characters dropped, you could use [3:]. Likewise, [3:-3] would give you a string with the first 3, and the last 3 characters removed. |
||||
|
|