You are viewing a single comment's thread from:RE: [Python Tips] SlicesView the full contextjamzed (55)in #programming • 7 years ago Another example of the power of slices can be string reverse, >>> "jamzed"[::-1] 'dezmaj'
Good example.