#!/usr/bin/env python3 alphabet = map(lambda needle: int(needle) + int('A'), range(0, 26)) print(alphabet) #print(map(lambda needle: , list("AA")))