All pastes #2052154 Raw Edit

Someone

public python v1 · immutable
#2052154 ·published 2011-04-30 07:55 UTC
rendered paste body
def special(line):  return len(line)def demo():  line = 'Free line from tr.py'  print 'line is ', line  print 'len is', special(line)if __name__ == "__main__":    demo()