dic = {
    key: fr"{key}_value"
    for key in
    map(
        chr, range(97, 100)
    )
}

# print(
#     dic.values()[2]
# )  # TypeError: 'dict_values' object is not subscriptable

print(
    list(
        dic.keys()
    )[2]
)