How might one remove the first x characters from a string? For example, if one had a string lipsum, how would they remove the first 3 characters and get a resul
lipsum
Example to show last 3 digits of account number.
x = '1234567890' x.replace(x[:7], '') o/p: '890'