#!/usr/bin/python3 a = {"a":"b","c":"d"} a_values = list(a.values()) print(a_values) # output: ["b", "d"]