ItsyourIP.com
Python scripting tips, how to’s, tutorials
To remove the last ‘n’ characters of a string
'string'[:-n]
or
stringVariable[:-n]
(more…)