1 #!/usr/bin/env python 2 3 i = 2 4 while i > 0: 5 c = len([3, 4, 5]) # right hand side name changes origin 6 7 def len(a): 8 return a 9 10 i -= 1 11 12 result_2 = len(2) 13 14 # vim: tabstop=4 expandtab shiftwidth=4