File: class/Workbook/Examples/Lecture5/changer.py

def changer(x, y):
    x = 2             # changes local name's value only
    y[0] = 'spam'     # changes shared object in-place



[Home page] Books Code Blog Python Author Train Find ©M.Lutz