Dictionary Python

table = {'Python':  'Guido van Rossum',
          'Perl':    'Larry Wall',
          'Tcl':     'John Ousterhout' }
language = 'Python'
creator  = table[language]
print creator