#!/usr/bin/env python """ examples of slicing """ def remove_every_other(string): return string[::2]