Logo

Programming-Idioms

  • Rust
  • Python

Idiom #332 List of the keys of a map

Create the list k containing all the keys of the map m

k = m.keys()

m is a dict.

The returned value is a view object.
k = [*m.keys()]
k = list(m.keys())
use std::collections::HashMap;
m.keys().collect::<Vec<_>>()

m.keys() can be used to get an iteration over the keys of a HashMap.
final k = m.keys;

The order of the element depends on the Map implementation

New implementation...
< >
programming-idioms.org