Anonymous
public python v1 · immutabledef eat(food, inmystomach=[]): inmystomach.append(food) print 'In my stomach:', inmystomacheat('yangmeat')eat('chicken')eat('cocas')eat('cocoa')def eat(food, inmystomach=[]): inmystomach.append(food) print 'In my stomach:', inmystomacheat('yangmeat')eat('chicken')eat('cocas')eat('cocoa')