# To get all the keys of a dictionary as a list, see below newdict = {1:0, 2:0, 3:0} list(newdict) # Output: # [1, 2, 3]