def stringify_keys(dictionary):
    return dict((str(keyword), value)
        for keyword, value in dictionary.items())