Difference between revisions of "Python - Lambda"

From PeformIQ Wiki
Jump to navigation Jump to search
(Created page with "=Examples= <pre> #!/usr/bin/env python27 crange = lambda c1, c2: [ chr(c) for c in range(ord(c1), ord(c2)+1) ] print crange('A', 'Z') print crange('0', '9') </pre> [[Cate...")
(No difference)

Revision as of 11:46, 31 January 2012

Examples

#!/usr/bin/env python27

crange = lambda c1, c2: [ chr(c) for c in range(ord(c1), ord(c2)+1) ]

print crange('A', 'Z')
print crange('0', '9')