def knights(): title = 'Sir' action = (lambda x: title + ' ' + x) return action act = knights() print act('robin')