#!/usr/bin/python def add_evil(data=[]): data.append(666) return data print add_evil() print add_evil(["hi there"]) print add_evil() print add_evil()