1 #!/usr/bin/env python 2 3 x = [1, 2, 3] 4 5 if x: 6 y = len(x) 7 else: 8 def len(arg): 9 return 0 10 11 z = len(x) 12 13 # vim: tabstop=4 expandtab shiftwidth=4